There isn't that many 500 codes, and most of them have a meaning other than "database failed"/"ioexception occured". Note that you should probably distinguish between what kind of database error, e.g. deleting a non existant object (remember to check the "affected rows" of your DELETE statement), would result in a 404 status.
For your two examples, you should return status 500. Though if an IO exception occur on the response.getWriter(), it's likely too late to return an error, or you can't reach the client anyhow.
And, take a look at the response codes used by the twitter api as well as this page.