Let say if I throw GeneralError when call a service, how to make error object like what I want:
{
"status": "Failed",
"code": "500_1",
"detail": "Something is wrong with your API"
}
I already try add this on error hook
hook => {
hook.error = {
"status": "Failed",
"code": "500_1",
"detail": "Something is wrong with your API"
}
return hook
}
But still cannot, and still return default error object of feathers:
{
"name": "GeneralError",
"message": "Error",
"code": 500,
"className": "general-error",
"data": {},
"errors": {}
}
You can create your own custom error.
Example: