ch1p_io_web/engine/exceptions/UnauthorizedException.php
Evgeny Zinoviev f7bfdf58de initial
2022-07-09 19:40:17 +03:00

9 lines
177 B
PHP

<?php
class UnauthorizedException extends BadMethodCallException {
public function __construct(string $message = '') {
parent::__construct($message, 401);
}
}