koel/app/Exceptions/MethodNotImplementedException.php
2024-07-06 17:44:41 +02:00

13 lines
239 B
PHP

<?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.");
}
}