Files
kiri-core/System/Exception/NotFindClassException.php
T

36 lines
715 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/24 0024
* Time: 17:32
*/
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 01:27:08 +08:00
namespace Snowflake\Exception;
2020-12-17 14:09:14 +08:00
use JetBrains\PhpStorm\Pure;
2020-08-31 01:27:08 +08:00
use Throwable;
/**
* Class NotFindClassException
2020-08-31 12:38:32 +08:00
* @package Snowflake\Snowflake\Exception
2020-08-31 01:27:08 +08:00
*/
class NotFindClassException extends \Exception
{
2020-12-17 14:09:14 +08:00
/**
* NotFindClassException constructor.
* @param string $message
* @param int $code
* @param Throwable|null $previous
*/
#[Pure] public function __construct(string $message = "", int $code = 0, Throwable $previous = null)
2020-08-31 01:27:08 +08:00
{
$message = "No class named `$message` was found, please check if the class name is correct";
parent::__construct($message, 404, $previous);
}
}