#include <xslParseError.hpp>

Public Member Functions | |
| XSLParseError (const std::string &_xslScriptFileName, const std::string &_message) | |
| Constructor. | |
| virtual | ~XSLParseError (void) throw () |
| const std::string & | getXSLScriptFileName (void) const |
| const std::string & | getMessage (void) const |
Protected Attributes | |
| std::string | xslScriptFileName |
| std::string | message |
Definition at line 26 of file xslParseError.hpp.
| XSLParseError::XSLParseError | ( | const std::string & | _xslScriptFileName, | |
| const std::string & | _message | |||
| ) | [inline] |
Constructor.
Definition at line 29 of file xslParseError.hpp.
00030 : 00031 xslScriptFileName(_xslScriptFileName), message(_message) {}
| virtual XSLParseError::~XSLParseError | ( | void | ) | throw () [inline, virtual] |
| const std::string& XSLParseError::getXSLScriptFileName | ( | void | ) | const [inline] |
Definition at line 35 of file xslParseError.hpp.
References xslScriptFileName.
00036 { return xslScriptFileName; }
| const std::string& XSLParseError::getMessage | ( | void | ) | const [inline] |
std::string XSLParseError::xslScriptFileName [protected] |
std::string XSLParseError::message [protected] |
Temporary string to do null-termination. The method what() requires a null-terminated string.
Reimplemented from Error.
Definition at line 44 of file xslParseError.hpp.
Referenced by getMessage().