mirror of
https://github.com/koel/koel
synced 2024-12-22 18:43:21 +00:00
20 lines
426 B
PHP
20 lines
426 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
use Throwable;
|
||
|
|
||
|
class SongPathNotFoundException extends Exception
|
||
|
{
|
||
|
private function __construct($message = '', $code = 0, ?Throwable $previous = null)
|
||
|
{
|
||
|
parent::__construct($message, $code, $previous);
|
||
|
}
|
||
|
|
||
|
public static function create(string $path): self
|
||
|
{
|
||
|
return new static(sprintf('The song at path %s cannot be found.', $path));
|
||
|
}
|
||
|
}
|