Primo Committ
This commit is contained in:
18
vendor/spatie/db-dumper/src/Exceptions/CannotStartDump.php
vendored
Normal file
18
vendor/spatie/db-dumper/src/Exceptions/CannotStartDump.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\DbDumper\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class CannotStartDump extends Exception
|
||||
{
|
||||
/**
|
||||
* @param string $name
|
||||
*
|
||||
* @return \Spatie\DbDumper\Exceptions\CannotStartDump
|
||||
*/
|
||||
public static function emptyParameter($name)
|
||||
{
|
||||
return new static("Parameter `{$name}` cannot be empty.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user