Exemplo n.º 1
0
 public HaloApiException(int statusCode, string reasonPhrase)
 {
     HaloApiError = new HaloApiError
     {
         StatusCode = statusCode,
         Message = reasonPhrase
     };
 }
Exemplo n.º 2
0
 public HaloApiException(HaloApiError haloApiError)
 {
     HaloApiError = haloApiError;
 }