4in1_ws_web/classes/exceptions/NotFoundException.php
2023-12-30 23:29:31 +00:00

11 lines
197 B
PHP

<?php
namespace exceptions;
class NotFoundException extends \BadMethodCallException {
public function __construct(string $message = '') {
parent::__construct($message, 404);
}
}