One Hat Cyber Team
Your IP:
216.73.216.30
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
/
proc
/
thread-self
/
cwd
/
View File Name :
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 { // } Handler.php 0000644 00000002032 15111167542 0006632 0 ustar 00 <?php namespace App\Exceptions; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Throwable; class Handler extends ExceptionHandler { /** * A list of exception types with their corresponding custom log levels. * * @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*> */ protected $levels = [ // ]; /** * A list of the exception types that are not reported. * * @var array<int, class-string<\Throwable>> */ protected $dontReport = [ // ]; /** * A list of the inputs that are never flashed to the session on validation exceptions. * * @var array<int, string> */ protected $dontFlash = [ 'current_password', 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. * * @return void */ public function register() { $this->reportable(function (Throwable $e) { // }); } } error_log 0000644 00000002230 15111167542 0006461 0 ustar 00 [18-Nov-2025 19:59:03 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Exceptions\Handler" not found in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php on line 8 [19-Nov-2025 03:56:49 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Exceptions\Handler" not found in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php on line 8 [22-Nov-2025 04:36:53 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Exceptions\Handler" not found in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php on line 8 [24-Nov-2025 21:04:14 UTC] PHP Fatal error: Uncaught Error: Class "Illuminate\Foundation\Exceptions\Handler" not found in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php:8 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/app/Exceptions/Handler.php on line 8 MissingScopeException.php 0000644 00000001571 15111300520 0011527 0 ustar 00 <?php namespace Laravel\Sanctum\Exceptions; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Support\Arr; /** * @deprecated * @see \Laravel\Sanctum\Exceptions\MissingAbilityException */ class MissingScopeException extends AuthorizationException { /** * The scopes that the user did not have. * * @var array */ protected $scopes; /** * Create a new missing scope exception. * * @param array|string $scopes * @param string $message * @return void */ public function __construct($scopes = [], $message = 'Invalid scope(s) provided.') { parent::__construct($message); $this->scopes = Arr::wrap($scopes); } /** * Get the scopes that the user did not have. * * @return array */ public function scopes() { return $this->scopes; } } MissingAbilityException.php 0000644 00000001502 15111300520 0012045 0 ustar 00 <?php namespace Laravel\Sanctum\Exceptions; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Support\Arr; class MissingAbilityException extends AuthorizationException { /** * The abilities that the user did not have. * * @var array */ protected $abilities; /** * Create a new missing scope exception. * * @param array|string $abilities * @param string $message * @return void */ public function __construct($abilities = [], $message = 'Invalid ability provided.') { parent::__construct($message); $this->abilities = Arr::wrap($abilities); } /** * Get the abilities that the user did not have. * * @return array */ public function abilities() { return $this->abilities; } } CouldNotConvert.php 0000644 00000000434 15111310714 0010340 0 ustar 00 <?php namespace Spatie\Image\Exceptions; use Exception; class CouldNotConvert extends Exception { public static function unknownManipulation(string $operationName): self { return new self("Can not convert image. Unknown operation `{$operationName}` used"); } } InvalidImageDriver.php 0000644 00000000402 15111310714 0010750 0 ustar 00 <?php namespace Spatie\Image\Exceptions; use Exception; class InvalidImageDriver extends Exception { public static function driver(string $driver): self { return new self("Driver must be `gd` or `imagick`. `{$driver}` provided."); } } InvalidTemporaryDirectory.php 0000644 00000000772 15111310714 0012433 0 ustar 00 <?php namespace Spatie\Image\Exceptions; use Exception; class InvalidTemporaryDirectory extends Exception { public static function temporaryDirectoryNotCreatable(string $directory): self { return new self("the temporary directory `{$directory}` does not exist and can not be created"); } public static function temporaryDirectoryNotWritable(string $directory): self { return new self("the temporary directory `{$directory}` does exist but is not writable"); } } InvalidManipulation.php 0000644 00000002305 15111310714 0011216 0 ustar 00 <?php namespace Spatie\Image\Exceptions; use Exception; class InvalidManipulation extends Exception { public static function invalidWidth(int $width): self { return new self("Width should be a positive number. `{$width}` given."); } public static function invalidHeight(int $height): self { return new self("Height should be a positive number. `{$height}` given."); } public static function invalidParameter(string $name, $invalidValue, array $validValues): self { $validValues = self::formatValues($validValues); $name = ucfirst($name); return new self("{$name} should be one of {$validValues}. `{$invalidValue}` given."); } public static function valueNotInRange(string $name, $invalidValue, $minValue, $maxValue): self { $name = ucfirst($name); return new self("{$name} should be a number in the range {$minValue} until {$maxValue}. `{$invalidValue}` given."); } protected static function formatValues(array $values): string { $quotedValues = array_map(function (string $value) { return "`{$value}`"; }, $values); return implode(', ', $quotedValues); } }