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