For returning from a Web API 2 controller, I can return content with the response if the response is OK (status 200) like this:
public IHttpActionResult
You can also do:
return InternalServerError(new Exception("SOME CUSTOM MESSAGE"));