ContainerNotFoundException.php 424 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Pay\Exception;
  4. use Throwable;
  5. class ContainerNotFoundException extends ContainerException
  6. {
  7. /**
  8. * @param mixed $extra
  9. */
  10. public function __construct(string $message = 'Container Not Found', int $code = self::CONTAINER_NOT_FOUND, $extra = null, Throwable $previous = null)
  11. {
  12. parent::__construct($message, $code, $extra, $previous);
  13. }
  14. }