コード例 #1
0
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Path '%s' is not found", $path);
     parent::__construct($message, $path, $previous);
 }
コード例 #2
0
 public function __construct($path, \Exception $previous = null)
 {
     $message = sprintf("Error occurred during deleting file '%s'", $path);
     parent::__construct($message, $path, $previous);
 }
コード例 #3
0
ファイル: fileopenexception.php プロジェクト: ASDAFF/open_bx
 public function __construct($path, \Exception $previous = null)
 {
     $message = Loc::getMessage("file_open_exception_message", array("#PATH#" => $path));
     parent::__construct($message, $path, $previous);
 }