mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
13 lines
239 B
PHP
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.");
|
|
}
|
|
}
|