mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
Added constructor which takes a message, but no locator
This commit is contained in:
parent
d33192d99d
commit
90e3d6d5a0
1 changed files with 10 additions and 0 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Reference in a new issue