aboutsummaryrefslogtreecommitdiff
path: root/engine/exceptions/NotImplementedException.php
blob: 1c4562abc02c95080102d1a3179eba1c95045a87 (plain)
1
2
3
4
5
6
7
8
9
<?php

class NotImplementedException extends BadMethodCallException {

    public function __construct(string $message = '') {
        parent::__construct($message, 501);
    }

}