Exemplo n.º 1
0
 /// <param name="id">Request id</param>
 /// <param name="error">Request error</param>
 public ApiResponse(ApiError error)
 {
     this.Error = error;
 }
Exemplo n.º 2
0
 internal ApiInvalidParametersException(ApiError error) : base(error)
 {
 }
Exemplo n.º 3
0
 internal ApiUnknownException(ApiError error) : base(error)
 {
 }
Exemplo n.º 4
0
 internal ApiMethodNotFoundException(ApiError error) : base(error)
 {
 }
Exemplo n.º 5
0
 internal ApiInvalidRequestException(ApiError error) : base(error)
 {
 }
Exemplo n.º 6
0
 protected ApiException(ApiError error) : this(error.Code, error.Message, error.Data)
 {
     //
 }
Exemplo n.º 7
0
 internal ApiCustomException(ApiError error) : base(error)
 {
 }
Exemplo n.º 8
0
 internal ApiParseException(ApiError error) : base(error)
 {
 }