Files
dsserver/app/repository/exception/NotFoundUserException.php
T
zimoyin ac95dbb1c8 init
2026-04-01 15:07:15 +08:00

17 lines
342 B
PHP

<?php
namespace app\repository\exception;
use RuntimeException;
class NotFoundUserException extends RuntimeException
{
public function __construct(
$message = 'Not Found User in database',
int $code = 404,
?\Throwable $previous = null
)
{
parent::__construct($message, $code, $previous);
}
}