QXmlParseException 类用于报告错误采用 QXmlErrorHandler 接口。 更多...
头: | #include <QXmlParseException> |
qmake: | QT += xml |
该类已过时。 提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
注意: 此类的所有函数 可重入 .
QXmlParseException (const QXmlParseException & other ) | |
QXmlParseException (const QString & name = QString(), int c = -1, int l = -1, const QString & p = QString(), const QString & s = QString()) | |
~QXmlParseException () | |
int | columnNumber () const |
int | lineNumber () const |
QString | message () const |
QString | publicId () const |
QString | systemId () const |
The XML subsystem constructs an instance of this class when it detects an error. You can retrieve the place where the error occurred using systemId (), publicId (), lineNumber () 和 columnNumber (), along with the error message (). The possible error messages are:
Note that, if you want to display these error messages to your application's users, they will be displayed in English unless they are explicitly translated.
另请参阅 QXmlErrorHandler and QXmlReader .
创建副本为 other .
Constructs a parse exception with the error string name for column c and line l for the public identifier p and the system identifier s .
销毁 QXmlParseException .
Returns the column number where the error occurred.
Returns the line number where the error occurred.
Returns the error message.
Returns the public identifier where the error occurred.
Returns the system identifier where the error occurred.