koel/app/Exceptions/MethodNotImplementedException.php

14 lines
239 B
PHP
Raw Normal View History

2024-01-09 18:34:40 +00:00
<?php
namespace App\Exceptions;
use Exception;
class MethodNotImplementedException extends Exception
{
public static function method(string $method): self
{
return new self("Method $method is not implemented.");
}
}