類別 yii\web\UnprocessableEntityHttpException
UnprocessableEntityHttpException 代表「無法處理的實體」HTTP 例外,狀態碼為 422。
使用此例外來告知伺服器理解請求實體的內容類型,且該請求實體的語法正確,但伺服器無法處理包含的指令。例如,返回表單驗證錯誤。
公開方法
方法 | 描述 | 定義於 |
---|---|---|
__construct() | 建構子。 | yii\web\UnprocessableEntityHttpException |
getName() | yii\web\HttpException |
方法詳情
建構子。
public void __construct ( $message = null, $code = 0, $previous = null ) | ||
$message | string|null |
錯誤訊息 |
$code | integer |
錯誤代碼 |
$previous | Throwable|null |
用於異常鏈結的前一個異常。 |
public function __construct($message = null, $code = 0, $previous = null)
{
parent::__construct(422, $message, $code, $previous);
}
註冊 或 登入 以便評論。