#include <Exception.h>


Definition at line 254 of file Exception.h.
Public Member Functions | |
| NotImplementedException (int code=0) | |
| NotImplementedException (const std::string &msg, int code=0) | |
| NotImplementedException (const std::string &msg, const std::string &arg, int code=0) | |
| NotImplementedException (const std::string &msg, const Poco::Exception &exc, int code=0) | |
| NotImplementedException (const NotImplementedException &exc) | |
| ~NotImplementedException () throw () | |
| NotImplementedException & | operator= (const NotImplementedException &exc) |
| const char * | name () const throw () |
| Assignment operator. | |
| const char * | className () const throw () |
| Returns a static string describing the exception. | |
| Poco::Exception * | clone () const |
| Returns a string consisting of the message name and the message text. | |
| void | rethrow () const |
| Creates an exact copy of the exception. | |
| Poco::NotImplementedException::NotImplementedException | ( | int | code = 0 |
) |
| Poco::NotImplementedException::NotImplementedException | ( | const std::string & | msg, | |
| int | code = 0 | |||
| ) |
| Poco::NotImplementedException::NotImplementedException | ( | const std::string & | msg, | |
| const std::string & | arg, | |||
| int | code = 0 | |||
| ) |
| Poco::NotImplementedException::NotImplementedException | ( | const std::string & | msg, | |
| const Poco::Exception & | exc, | |||
| int | code = 0 | |||
| ) |
| Poco::NotImplementedException::NotImplementedException | ( | const NotImplementedException & | exc | ) |
| Poco::NotImplementedException::~NotImplementedException | ( | ) | throw () |
| NotImplementedException& Poco::NotImplementedException::operator= | ( | const NotImplementedException & | exc | ) |
| const char* Poco::NotImplementedException::name | ( | ) | const throw () [virtual] |
| const char* Poco::NotImplementedException::className | ( | ) | const throw () [virtual] |
| Poco::Exception* Poco::NotImplementedException::clone | ( | ) | const [virtual] |
Returns a string consisting of the message name and the message text.
Reimplemented from Poco::LogicException.
| void Poco::NotImplementedException::rethrow | ( | ) | const [virtual] |
Creates an exact copy of the exception.
The copy can later be thrown again by invoking rethrow() on it.
Reimplemented from Poco::LogicException.