public static function ambientFileDoesNotExist($file)
18
{
19
throw new ConsoleException('The file of an ambient was not found: ' . $file, ExceptionCodes::AMBIENT_FILE_DOES_NOT_EXIST);
20
}
21
22
public static function ambientFilesDoesNotReturnAnInstanceOfAValidAmbient($file)
23
{
24
throw new ConsoleException('The file of an ambient does not return an instance of a valid ambient: ' . $file, ExceptionCodes::AMBIENT_FILE_DOES_NOT_RETURN_A_VALID_AMBIENT_INSTANCE);
25
}
26
27
public static function directoryIsNotReadable($dir)
28
{
29
throw new ConsoleException('Directory not readable: ' . $dir, ExceptionCodes::DIRECTORY_NOT_READABLE);
30
}
31
32
public static function ambientIsNotInstanceOfAmbientInterface($ambient)