* @package Mammut\IO */ class FileNotFoundException extends IOException { public function __construct($filename) { if (defined('DEBUG')) parent::__construct('file not found: '.$filename, self::IO_NOT_FOUND, $filename); else parent::__construct('file not found', self::IO_NOT_FOUND, $filename); } }