|
reSIProcate/rutil
9694
|
BaseException used to indicate parse failures. More...
#include <ParseException.hxx>


Public Member Functions | |
| ParseException (const Data &msg, const Data &context, const Data &file, const int line) | |
| ~ParseException () throw () | |
| const char * | name () const |
| const Data & | getContext () const |
Private Attributes | |
| Data | mContext |
BaseException used to indicate parse failures.
Definition at line 16 of file ParseException.hxx.
| resip::ParseException::ParseException | ( | const Data & | msg, |
| const Data & | context, | ||
| const Data & | file, | ||
| const int | line | ||
| ) |
Definition at line 6 of file ParseException.cxx.
: resip::BaseException(msg, file, line), mContext(context) {}
| resip::ParseException::~ParseException | ( | ) | throw () |
Definition at line 14 of file ParseException.cxx.
{}
| const Data & resip::ParseException::getContext | ( | ) | const |
| const char * resip::ParseException::name | ( | ) | const [virtual] |
Implements resip::BaseException.
Definition at line 18 of file ParseException.cxx.
{
return "ParseException";
}
Data resip::ParseException::mContext [private] |
Definition at line 28 of file ParseException.hxx.
Referenced by getContext().
1.7.5.1