|
reSIProcate/stack
9694
|
thrown when the stack is unable to function. More...
#include <SipStack.hxx>


Public Member Functions | |
| Exception (const Data &msg, const Data &file, const int line) | |
| constructor | |
| const char * | name () const |
| what gets called instead of the pure virtual in the base | |
thrown when the stack is unable to function.
For instance, the stack cannot process messages because there are no transports associated with the stack.
Definition at line 242 of file SipStack.hxx.
| resip::SipStack::Exception::Exception | ( | const Data & | msg, |
| const Data & | file, | ||
| const int | line | ||
| ) | [inline] |
constructor
| msg | The message to be put in the exception |
| file | The source code file where the exception got thrown |
| line | The line number in the file where the exception got thrown |
Definition at line 254 of file SipStack.hxx.
: BaseException(msg, file, line) {}
| const char* resip::SipStack::Exception::name | ( | ) | const [inline, virtual] |
what gets called instead of the pure virtual in the base
Implements resip::BaseException.
Definition at line 260 of file SipStack.hxx.
{ return "SipStack::Exception"; }
1.7.5.1