18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
|
|
namespace plugin\admin\app\repository\exception;
|
|
|
|
use RuntimeException;
|
|
|
|
class EntityNotFoundException extends RuntimeException
|
|
{
|
|
public function __construct(
|
|
string $message = '记录不存在',
|
|
int $code = 404,
|
|
?\Throwable $previous = null
|
|
)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|