17 lines
355 B
PHP
17 lines
355 B
PHP
<?php
|
|
|
|
namespace plugin\admin\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);
|
|
}
|
|
} |