14 lines
207 B
PHP
Executable File
14 lines
207 B
PHP
Executable File
<?php
|
|
|
|
namespace Spatie\Backup\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class InvalidCommand extends Exception
|
|
{
|
|
public static function create(string $reason): self
|
|
{
|
|
return new static($reason);
|
|
}
|
|
}
|