0
Web APIでカスタム例外処理を実装したいと考えています。クラスオブジェクトを例外処理に送信
私はいくつかの初期実装を実装することができますが、クラスオブジェクトを例外に渡してすべての属性を表示する必要があります。以下のような
class error
{
int error_code
string error_message
string API
}
いくつかのエラーは、それがこのコードは、メッセージのみ
throw new HttpResponseException(
Request.CreateErrorResponse(HttpStatusCode.NotFound, message));
任意の提案を示し、JSONなどの
{
"error_code": 0,
"error_message":"Either Your are not authorized or you don't have any project yet.",
"API": "save data"
}
を示すべき
おかげ
ありがとうございます。 –