mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-22 03:40:06 +08:00
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php declare(strict_types=1);
|
||
|
||
/**
|
||
* Website: https://mudew.com/
|
||
* Author: Lkeme
|
||
* License: The MIT License
|
||
* Email: Useri@live.cn
|
||
* Updated: 2022 ~ 2023
|
||
*
|
||
* _____ _ _ _ _ _ _____ _ _____ _____ _____
|
||
* | _ \ | | | | | | | | | | | ____| | | | _ \ | ____| | _ \ & /l、
|
||
* | |_| | | | | | | | | |_| | | |__ | | | |_| | | |__ | |_| | (゚、 。 7
|
||
* | _ { | | | | | | | _ | | __| | | | ___/ | __| | _ / \、゙ ~ヽ *
|
||
* | |_| | | | | |___ | | | | | | | |___ | |___ | | | |___ | | \ \ じしf_, )ノ
|
||
* |_____/ |_| |_____| |_| |_| |_| |_____| |_____| |_| |_____| |_| \_\
|
||
*/
|
||
|
||
namespace Bhp\Util\Exceptions;
|
||
|
||
use Exception;
|
||
use Throwable;
|
||
|
||
class SingletonException extends Exception
|
||
{
|
||
/**
|
||
* @param string $message
|
||
* @param int $code
|
||
* @param Throwable|null $previous
|
||
*/
|
||
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
|
||
{
|
||
parent::__construct($message, $code, $previous);
|
||
}
|
||
} |