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