public function __construct($path, \Exception $previous = null)
 {
     /*$message = Loc::getMessage(
     			"file_delete_exception_message",
     			array("#PATH#" => $path)
     		);*/
     $message = sprintf("Error occurred during deleting file '%s'", $path);
     parent::__construct($message, $path, $previous);
 }
 public function __construct($path, \Exception $previous = null)
 {
     /*$message = Loc::getMessage(
     			"file_not_found_exception_message",
     			array("#PATH#" => $path)
     		);*/
     $message = sprintf("Path '%s' is not found", $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);
 }
 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);
 }