return new static('A directory must be specified');
40
}
41
42
public static function wrongDestinationDirectory()
43
{
44
return new static("A destination directory can't be inside of a source directory!");
45
}
46
47
public static function destinationDirectoryIsSource()
48
{
49
return new static('A destination directory is a source directory. If you want to overwrite it, you must specify that as an option.');
50
}
51
52
public static function destinationExist()
53
{
54
return new static('A destination directory or file with a given name already exists. If you want to overwrite it, you must specify that as an option.');