4in1_ws_web/classes/exceptions/NotFoundException.php

11 lines
201 B
PHP

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