summaryrefslogtreecommitdiff
path: root/vendor/firebase/php-jwt/Exceptions
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /vendor/firebase/php-jwt/Exceptions
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'vendor/firebase/php-jwt/Exceptions')
-rw-r--r--vendor/firebase/php-jwt/Exceptions/BeforeValidException.php6
-rw-r--r--vendor/firebase/php-jwt/Exceptions/ExpiredException.php6
-rw-r--r--vendor/firebase/php-jwt/Exceptions/SignatureInvalidException.php6
3 files changed, 18 insertions, 0 deletions
diff --git a/vendor/firebase/php-jwt/Exceptions/BeforeValidException.php b/vendor/firebase/php-jwt/Exceptions/BeforeValidException.php
new file mode 100644
index 00000000..5a84975e
--- /dev/null
+++ b/vendor/firebase/php-jwt/Exceptions/BeforeValidException.php
@@ -0,0 +1,6 @@
+<?php
+
+class BeforeValidException extends UnexpectedValueException
+{
+
+}
diff --git a/vendor/firebase/php-jwt/Exceptions/ExpiredException.php b/vendor/firebase/php-jwt/Exceptions/ExpiredException.php
new file mode 100644
index 00000000..bd80468f
--- /dev/null
+++ b/vendor/firebase/php-jwt/Exceptions/ExpiredException.php
@@ -0,0 +1,6 @@
+<?php
+
+class ExpiredException extends UnexpectedValueException
+{
+
+}
diff --git a/vendor/firebase/php-jwt/Exceptions/SignatureInvalidException.php b/vendor/firebase/php-jwt/Exceptions/SignatureInvalidException.php
new file mode 100644
index 00000000..d1222322
--- /dev/null
+++ b/vendor/firebase/php-jwt/Exceptions/SignatureInvalidException.php
@@ -0,0 +1,6 @@
+<?php
+
+class SignatureInvalidException extends UnexpectedValueException
+{
+
+}