public function __construct($path, \Exception $previous = null)
 {
     /*$message = Loc::getMessage(
     			"invalid_path_exception_message",
     			array("#PATH#" => $path)
     		);*/
     $message = sprintf("Path '%s' is invalid", $path);
     parent::__construct($message, $path, $previous);
 }
Example #2
0
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("The file '%s' is not opened.", $path);
     parent::__construct($message, $path, $previous);
 }
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Path '%s' is not found.", $path);
     parent::__construct($message, $path, $previous);
 }
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Error occurred during deleting file '%s'.", $path);
     parent::__construct($message, $path, $previous);
 }