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

9 lines
174 B
PHP

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