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