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

28 lines
445 B
PHP
Raw Normal View History

2020-08-31 01:27:08 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/25 0025
* Time: 18:34
*/
2020-10-29 18:17:25 +08:00
declare(strict_types=1);
2020-08-31 01:27:08 +08:00
namespace Snowflake\Exception;
use Throwable;
/**
* Class ComponentException
2020-08-31 12:38:32 +08:00
* @package Snowflake\Snowflake\Exception
2020-08-31 01:27:08 +08:00
*/
class ComponentException extends \Exception
{
public function __construct(string $message = "", int $code = 0, Throwable $previous = NULL)
{
parent::__construct($message, 5000, $previous);
}
}