(String desc)
| 229 | } |
| 230 | |
| 231 | private final void error(String desc) throws XmlPullParserException { |
| 232 | if (relaxed) { |
| 233 | if (error == null) |
| 234 | error = "ERR: " + desc; |
| 235 | } |
| 236 | else |
| 237 | exception(desc); |
| 238 | } |
| 239 | |
| 240 | private final void exception(String desc) throws XmlPullParserException { |
| 241 | throw new XmlPullParserException( |
no test coverage detected