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