Files
dsserver/plugin/admin/app/repository/exception/EntityNotFoundException.php
T
zimoyin 13fd9c5f0a init
2026-04-06 20:48:32 +08:00

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);
}
}