コード例 #1
0
 public HelpApiExceptionResult(T data, HelpApiExceptionType excType)
 {
     _data    = data;
     _excType = excType;
 }
コード例 #2
0
 public HelpApiExceptionResult(T data, HelpApiExceptionType excType, System.Net.HttpStatusCode statusCode)
 {
     _data       = data;
     _excType    = excType;
     _statusCode = statusCode;
 }
コード例 #3
0
 public IHttpActionResult HelpApiException(Terror data,
                                           HelpApiExceptionType excType, HttpStatusCode statusCode = HttpStatusCode.InternalServerError)
 {
     return(new HelpApiExceptionResult <Terror>(data, excType, statusCode));
 }