| 71 | } |
| 72 | |
| 73 | void error(const SAXParseException& toCatch) override |
| 74 | { |
| 75 | std::stringstream message; |
| 76 | message << "Error at file \"" << StrX(toCatch.getSystemId()) << "\", line " |
| 77 | << toCatch.getLineNumber() << ", column " << toCatch.getColumnNumber() |
| 78 | << "\n Message: " << StrX(toCatch.getMessage()) << std::endl; |
| 79 | throw Base::XMLBaseException(message.str()); |
| 80 | } |
| 81 | |
| 82 | void fatalError(const SAXParseException& toCatch) override |
| 83 | { |