pay_lihaink_cn/app/common/exception/HttpException.php
2023-10-09 13:42:49 +08:00

21 lines
439 B
PHP

<?php
namespace app\common\exception;
use Throwable;
class HttpException extends \RuntimeException
{
protected $response = null;
public function __construct($message = "", $code = 0, $header=[],Throwable $previous = null)
{
$this->response = json(json_decode($message,true));
parent::__construct($message, $code, $previous);
}
public function getResponse(){
return $this->response;
}
}