9 lines
173 B
PHP
9 lines
173 B
PHP
<?php
|
|
|
|
class NotFoundException extends BadMethodCallException {
|
|
|
|
public function __construct(string $message = '') {
|
|
parent::__construct($message, 404);
|
|
}
|
|
|
|
} |