@@ -3,26 +3,30 @@ module Auth0
3
3
# if you want to catch all exceptions, then you should use this one.
4
4
# Network exceptions are not included
5
5
class Exception < StandardError ; end
6
+ # exception for unauthorized requests, if you see it,
7
+ # probably Bearer Token is not set correctly
8
+ class Unauthorized < Auth0 ::Exception ; end
9
+ # exception for not found resource, you query for an
10
+ # unexistent resource, or wrong path
11
+ class NotFound < Auth0 ::Exception ; end
12
+ # exception for unknown error
13
+ class Unsupported < Auth0 ::Exception ; end
14
+ # exception for server error
15
+ class ServerError < Auth0 ::Exception ; end
16
+ # exception for incorrect request, you've sent wrong params
17
+ class BadRequest < Auth0 ::Exception ; end
18
+ # exception for unset user_id, this might cause removal of
19
+ # all users, or other unexpected bahaviour
20
+ class MissingUserId < Auth0 ::Exception ; end
21
+ # exception for an unset connection_id
22
+ class MissingConnectionId < Auth0 ::Exception ; end
23
+ # Api v2 access denied
24
+ class AccessDenied < Auth0 ::Exception ; end
25
+ # Invalid parameter passed, e.g. empty where ID is required
26
+ class InvalidParameter < Auth0 ::Exception ; end
27
+ # Invalid Auth0 credentials either client_id/secret for API v1
28
+ # or JWT for API v2/
29
+ class InvalidCredentials < Auth0 ::Exception ; end
30
+ # Invalid Auth0 API namespace
31
+ class InvalidApiNamespace < Auth0 ::Exception ; end
6
32
end
7
- # exception for unauthorized requests, if you see it, probably Bearer Token is not set correctly
8
- class Auth0 ::Unauthorized < Auth0 ::Exception ; end
9
- # exception for not found resource, you query for an unexistent resource, or wrong path
10
- class Auth0 ::NotFound < Auth0 ::Exception ; end
11
- # exception for unknown error
12
- class Auth0 ::Unsupported < Auth0 ::Exception ; end
13
- # exception for server error
14
- class Auth0 ::ServerError < Auth0 ::Exception ; end
15
- # exception for incorrect request, you've sent wrong params
16
- class Auth0 ::BadRequest < Auth0 ::Exception ; end
17
- # exception for unset user_id, this might cause removal of all users, or other unexpected bahaviour
18
- class Auth0 ::MissingUserId < Auth0 ::Exception ; end
19
- # exception for an unset connection_id
20
- class Auth0 ::MissingConnectionId < Auth0 ::Exception ; end
21
- # Api v2 access denied
22
- class Auth0 ::AccessDenied < Auth0 ::Exception ; end
23
- # Invalid parameter passed, e.g. empty where ID is required
24
- class Auth0 ::InvalidParameter < Auth0 ::Exception ; end
25
- # Invalid Auth0 credentials either client_id/secret for API v1 or JWT for API v2/
26
- class Auth0 ::InvalidCredentials < Auth0 ::Exception ; end
27
- # Invalid Auth0 API namespace
28
- class Auth0 ::InvalidApiNamespace < Auth0 ::Exception ; end
0 commit comments