chore: 重写初始提交(清空历史,整理后全量提交)
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: ywxapp<admin@ywxapp.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace ywxapp\exceptions;
|
||||
|
||||
/**
|
||||
* API应用错误信息
|
||||
* Class ApiException
|
||||
* @package ywxapp\exceptions
|
||||
*/
|
||||
class ApiStatusException extends \RuntimeException
|
||||
{
|
||||
protected $apiStatus;
|
||||
protected $apiData;
|
||||
|
||||
|
||||
public function __construct($status, $message, $data = [], $replace = [], $code = 0, \Throwable $previous = null)
|
||||
{
|
||||
if (is_array($message)) {
|
||||
$errInfo = $message;
|
||||
$message = $errInfo[1] ?? '未知错误';
|
||||
if ($code === 0) {
|
||||
$code = $errInfo[0] ?? 400;
|
||||
}
|
||||
}
|
||||
|
||||
if (is_numeric($message)) {
|
||||
$code = $message;
|
||||
$message = getLang($message, $replace);
|
||||
}
|
||||
|
||||
$this->apiData = $data;
|
||||
$this->apiStatus = $status;
|
||||
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
|
||||
|
||||
public function getApiStatus()
|
||||
{
|
||||
return $this->apiStatus;
|
||||
}
|
||||
|
||||
|
||||
public function getApiData()
|
||||
{
|
||||
return $this->apiData;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user