File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Exceptions/BackblazeCodes Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ class ErrorHandler
11
11
protected static $ mappings = [
12
12
13
13
// Status Code: 400
14
+ 'auth_token_limit ' => \TechKat \BackblazeB2 \Exceptions \BackblazeCodes \AuthTokenLimitException::class,
14
15
'bad_bucket_id ' => \TechKat \BackblazeB2 \Exceptions \BackblazeCodes \BadBucketIdException::class,
15
16
'bad_request ' => \TechKat \BackblazeB2 \Exceptions \BackblazeCodes \BadRequestException::class,
16
17
'cannot_delete_non_empty_bucket ' => \TechKat \BackblazeB2 \Exceptions \BackblazeCodes \BucketNotEmptyException::class,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace TechKat \BackblazeB2 \Exceptions \BackblazeCodes ;
4
+
5
+ use Exception ;
6
+
7
+ /*
8
+ |--------------------------------------------------------------------------
9
+ | AccessDeniedException
10
+ |--------------------------------------------------------------------------
11
+ */
12
+ class AuthTokenLimitException extends Exception {}
You can’t perform that action at this time.
0 commit comments