This commit is contained in:
2020-09-10 15:46:20 +08:00
parent 48c39103de
commit 03f20ae4e3
3 changed files with 34 additions and 6 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace HttpServer\Exception;
use Throwable;
/**
* Class ExitException
* @package HttpServer\Exception
*/
class ExitException extends \Exception
{
/**
* ExitException constructor.
* @param string $message
* @param int $code
* @param Throwable|null $previous
*/
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}