Skip to content

Commit 9214d76

Browse files
authored
implement base exception (#21)
1 parent 5b7d4e8 commit 9214d76

10 files changed

+19
-27
lines changed

src/Exceptions/InvalidKeyException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class InvalidKeyException extends Exception
5+
class InvalidKeyException extends JwtException
86
{
97
//
108
}

src/Exceptions/InvalidSignatureException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class InvalidSignatureException extends Exception
5+
class InvalidSignatureException extends JwtException
86
{
97
//
108
}

src/Exceptions/InvalidTokenException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class InvalidTokenException extends Exception
5+
class InvalidTokenException extends JwtException
86
{
97
//
108
}

src/Exceptions/JsonDecodingException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class JsonDecodingException extends Exception
5+
class JsonDecodingException extends JwtException
86
{
97
//
108
}

src/Exceptions/JsonEncodingException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class JsonEncodingException extends Exception
5+
class JsonEncodingException extends JwtException
86
{
97
//
108
}

src/Exceptions/JwtException.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
namespace MiladRahimi\Jwt\Exceptions;
4+
5+
use Exception;
6+
7+
class JwtException extends Exception
8+
{
9+
//
10+
}

src/Exceptions/NoKidException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class NoKidException extends Exception
5+
class NoKidException extends JwtException
86
{
97
//
108
}

src/Exceptions/SigningException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class SigningException extends Exception
5+
class SigningException extends JwtException
86
{
97
//
108
}

src/Exceptions/ValidationException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class ValidationException extends Exception
5+
class ValidationException extends JwtException
86
{
97
//
108
}

src/Exceptions/VerifierNotFoundException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
namespace MiladRahimi\Jwt\Exceptions;
44

5-
use Exception;
6-
7-
class VerifierNotFoundException extends Exception
5+
class VerifierNotFoundException extends JwtException
86
{
97
//
108
}

0 commit comments

Comments
 (0)