You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
355 B
19 lines
355 B
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class CustomException extends Exception
|
|
{
|
|
/**
|
|
* 构造函数
|
|
*
|
|
* @param string $message 错误消息
|
|
* @param int $code 错误码
|
|
*/
|
|
public function __construct(string $message = "业务异常", int $code = 400)
|
|
{
|
|
parent::__construct($message, $code);
|
|
}
|
|
}
|