コード例 #1
0
 public ResponseException(string message, SimpleRestServices.Client.Response response) : base(message)
 {
     Response = response;
 }
コード例 #2
0
 public UserNotAuthorizedException(SimpleRestServices.Client.Response response) : base("Unable to authenticate user and retrieve authorized service endpoints", response){}
コード例 #3
0
 public UserNotAuthorizedException(string message, SimpleRestServices.Client.Response response) : base(message, response){}
コード例 #4
0
 public ServiceFaultException(SimpleRestServices.Client.Response response) : base("There was an unhandled error at the service endpoint.  Please try again later.", response) { }
コード例 #5
0
 public ServiceFaultException(string message, SimpleRestServices.Client.Response response) : base(message, response){}
コード例 #6
0
 public MethodNotImplementedException(string message, SimpleRestServices.Client.Response response) : base(message, response) {}
コード例 #7
0
 public MethodNotImplementedException(SimpleRestServices.Client.Response response) : base("The requested method is not implemented at the service.", response) { }
コード例 #8
0
 public ServiceLimitReachedException(string message, SimpleRestServices.Client.Response response) : base(message, response) {}
コード例 #9
0
 public ServiceLimitReachedException(SimpleRestServices.Client.Response response) : base("The service rate limit has been reached.  Either request a service limit increase or wait until the limit resets.", response) {}
コード例 #10
0
 public ServiceUnavailableException(string message, SimpleRestServices.Client.Response response) : base(message, response) {}
コード例 #11
0
 public ServiceUnavailableException(SimpleRestServices.Client.Response response) : base("The service is currently unavailable. Please try again later.", response) {}
コード例 #12
0
 public BadServiceRequestException(SimpleRestServices.Client.Response response) : base("Unable to process the service request.  Please try again later.", response) { }