ch1p_io_web/engine/exceptions/NotImplementedException.php
Evgeny Zinoviev f7bfdf58de initial
2022-07-09 19:40:17 +03:00

9 lines
179 B
PHP

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