An error when parsing an XML document. In addition to its exception value, a ParseError contains two extra attributes: 'code' - the specific exception code 'position' - the line and column of the error
| 102 | |
| 103 | |
| 104 | class ParseError(SyntaxError): |
| 105 | """An error when parsing an XML document. |
| 106 | |
| 107 | In addition to its exception value, a ParseError contains |
| 108 | two extra attributes: |
| 109 | 'code' - the specific exception code |
| 110 | 'position' - the line and column of the error |
| 111 | |
| 112 | """ |
| 113 | pass |
| 114 | |
| 115 | # -------------------------------------------------------------------- |
| 116 |
no outgoing calls
searching dependent graphs…