42 lines
611 B
PHP
42 lines
611 B
PHP
<?php
|
|
|
|
|
|
|
|
namespace crmeb\traits;
|
|
|
|
/**
|
|
*
|
|
* Class BaseError
|
|
* @package crmeb\basic
|
|
*/
|
|
trait ErrorTrait
|
|
{
|
|
/**
|
|
* 错误信息
|
|
* @var string
|
|
*/
|
|
protected $error;
|
|
|
|
/**
|
|
* 设置错误信息
|
|
* @param string|null $error
|
|
* @return bool
|
|
*/
|
|
protected function setError(?string $error = null)
|
|
{
|
|
$this->error = $error ?: '未知错误';
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* 获取错误信息
|
|
* @return string
|
|
*/
|
|
public function getError()
|
|
{
|
|
$error = $this->error;
|
|
$this->error = null;
|
|
return $error;
|
|
}
|
|
}
|