コード例 #1
0
 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);
 }
コード例 #2
0
ファイル: ioexception.php プロジェクト: DarneoStudio/bitrix
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("The file '%s' is not opened.", $path);
     parent::__construct($message, $path, $previous);
 }
コード例 #3
0
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Path '%s' is not found.", $path);
     parent::__construct($message, $path, $previous);
 }
コード例 #4
0
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Error occurred during deleting file '%s'.", $path);
     parent::__construct($message, $path, $previous);
 }