Added constructor which takes a message, but no locator

This commit is contained in:
jez_higgins 2003-04-04 16:58:58 +00:00
parent d33192d99d
commit 90e3d6d5a0

View file

@ -41,6 +41,16 @@ public:
typedef string_type stringT;
typedef basic_Locator<stringT> LocatorT;
basic_SAXParseException(const std::string& message) :
SAXException(message),
publicId_(),
systemId_(),
lineNumber_(-1),
columnNumber_(-1)
{
setMsg();
} // basic_SAXParseException
basic_SAXParseException(const std::string& message,
const LocatorT& locator) :
SAXException(message),