Exemplo n.º 1
0
 public ApiException(ResponseError error, Exception innerException, Uri url)
     : this(error.Message, error, innerException, url)
 {
 }
Exemplo n.º 2
0
 public ApiException(string message, ResponseError error, Exception innerException, Uri url)
     : base(message, innerException)
 {
     Error = error;
     Url = url;
 }
Exemplo n.º 3
0
 public ApiException(ResponseError error)
     : this(error.Message, error, null, null)
 {
 }