11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
|
|
namespace exceptions;
|
|
|
|
class NotImplementedException extends \BadMethodCallException {
|
|
|
|
public function __construct(string $message = '') {
|
|
parent::__construct($message, 501);
|
|
}
|
|
|
|
} |