One Hat Cyber Team
Your IP:
216.73.216.139
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
self
/
root
/
home
/
fluxyjvi
/
www
/
assets
/
images
/
Edit File:
Exceptions.tar
TokenInvalidException.php 0000644 00000000476 15107516672 0011544 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; class TokenInvalidException extends JWTException { // } InvalidClaimException.php 0000644 00000001351 15107516672 0011502 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; use Exception; use Tymon\JWTAuth\Claims\Claim; class InvalidClaimException extends JWTException { /** * Constructor. * * @param \Tymon\JWTAuth\Claims\Claim $claim * @param int $code * @param \Exception|null $previous * @return void */ public function __construct(Claim $claim, $code = 0, Exception $previous = null) { parent::__construct('Invalid value provided for claim ['.$claim->getName().']', $code, $previous); } } TokenBlacklistedException.php 0000644 00000000513 15107516672 0012367 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; class TokenBlacklistedException extends TokenInvalidException { // } UserNotDefinedException.php 0000644 00000000500 15107516672 0012017 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; class UserNotDefinedException extends JWTException { // } JWTException.php 0000644 00000000616 15107516672 0007615 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; use Exception; class JWTException extends Exception { /** * {@inheritdoc} */ protected $message = 'An error occurred'; } PayloadException.php 0000644 00000000471 15107516672 0010541 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; class PayloadException extends JWTException { // } TokenExpiredException.php 0000644 00000000476 15107516672 0011556 0 ustar 00 <?php /* * This file is part of jwt-auth. * * (c) Sean Tymon <tymon148@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Exceptions; class TokenExpiredException extends JWTException { // }
Simpan