コード例 #1
0
 internal ApiException(string message, HttpResponseMessage response, ApiError deserializedErrorObject) : base(message)
 {
     Response     = response;
     ErrorDetails = deserializedErrorObject;
 }
コード例 #2
0
 internal ApiException(HttpResponseMessage response, ApiError deserializedErrorObject)
 {
     Response     = response;
     ErrorDetails = deserializedErrorObject;
 }