InvalidConfigException.php 395 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Artful\Exception;
  4. use Throwable;
  5. /**
  6. * @codeCoverageIgnore
  7. */
  8. class InvalidConfigException extends Exception
  9. {
  10. public function __construct(int $code = self::CONFIG_ERROR, string $message = '配置异常', mixed $extra = null, ?Throwable $previous = null)
  11. {
  12. parent::__construct($message, $code, $extra, $previous);
  13. }
  14. }