Example #1
0
 internal InternalError(QueryErrorResponse response) : base(response)
 {
 }
Example #2
0
 internal PermissionDenied(QueryErrorResponse response) : base(response)
 {
 }
Example #3
0
 public NotFound(QueryErrorResponse response) : base(response)
 {
 }
Example #4
0
 internal Unauthorized(QueryErrorResponse response) : base(response)
 {
 }
Example #5
0
 internal BadRequest(QueryErrorResponse response) : base(response)
 {
 }
Example #6
0
 protected FaunaException(QueryErrorResponse response) : base(CreateMessage(response.Errors))
 {
     _queryErrorResponse = response;
 }
Example #7
0
 internal UnknownException(QueryErrorResponse response) : base(response)
 {
 }
Example #8
0
 internal UnavailableError(QueryErrorResponse response) : base(response)
 {
 }