for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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.");
}