Files
tcpserver-flow/app/repository/exception/NotFoundUserException.php
T
2026-03-08 22:58:56 +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);
}
}