diff options
author | drtriumph <chris@firebase.com> | 2014-11-14 14:09:02 -0800 |
---|---|---|
committer | drtriumph <chris@firebase.com> | 2014-11-14 14:09:02 -0800 |
commit | 2d5caeb14bd94368d6ada8b839868a634dcca967 (patch) | |
tree | 27ddb527614d4ffe73043ed1d82f0ffcd61c78aa /Exceptions | |
parent | 0cc1ae69c2040c6afd4c0bfc30fae727ccfb016f (diff) | |
parent | c40229f5d15b067dcf58f30df262a1efe566fba6 (diff) | |
download | php-jwt-2d5caeb14bd94368d6ada8b839868a634dcca967.zip php-jwt-2d5caeb14bd94368d6ada8b839868a634dcca967.tar.gz php-jwt-2d5caeb14bd94368d6ada8b839868a634dcca967.tar.bz2 |
Merge branch 'brendo-integration' into integration
Diffstat (limited to 'Exceptions')
-rw-r--r-- | Exceptions/BeforeValidException.php | 6 | ||||
-rw-r--r-- | Exceptions/ExpiredException.php | 6 | ||||
-rw-r--r-- | Exceptions/SignatureInvalidException.php | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/Exceptions/BeforeValidException.php b/Exceptions/BeforeValidException.php new file mode 100644 index 0000000..5a84975 --- /dev/null +++ b/Exceptions/BeforeValidException.php @@ -0,0 +1,6 @@ +<?php + +class BeforeValidException extends UnexpectedValueException +{ + +} diff --git a/Exceptions/ExpiredException.php b/Exceptions/ExpiredException.php new file mode 100644 index 0000000..bd80468 --- /dev/null +++ b/Exceptions/ExpiredException.php @@ -0,0 +1,6 @@ +<?php + +class ExpiredException extends UnexpectedValueException +{ + +} diff --git a/Exceptions/SignatureInvalidException.php b/Exceptions/SignatureInvalidException.php new file mode 100644 index 0000000..d122232 --- /dev/null +++ b/Exceptions/SignatureInvalidException.php @@ -0,0 +1,6 @@ +<?php + +class SignatureInvalidException extends UnexpectedValueException +{ + +} |