|
Isorropia: Partitioning, Load Balancing and more
|
A simple extension of std::exception with constructors that accept a message in the form of a 'const char*' or a 'std::string'. More...
#include <Isorropia_Exception.hpp>
Public Member Functions | |
| Exception (const char *msg) throw () | |
| constructor that accepts a const char-ptr | |
| Exception (std::string msg) throw () | |
| constructor that accepts a std::string | |
| virtual | ~Exception () throw () |
| destructor | |
| const char * | what () const throw () |
| return const char-ptr of exception message | |
Private Attributes | |
| std::string | smsg_ |
A simple extension of std::exception with constructors that accept a message in the form of a 'const char*' or a 'std::string'.
| Isorropia::Exception::Exception | ( | const char * | msg | ) | throw () |
constructor that accepts a const char-ptr
| Isorropia::Exception::Exception | ( | std::string | msg | ) | throw () |
constructor that accepts a std::string
| virtual Isorropia::Exception::~Exception | ( | ) | throw () [virtual] |
destructor
| const char * Isorropia::Exception::what | ( | ) | const throw () [inline] |
return const char-ptr of exception message
std::string Isorropia::Exception::smsg_ [private] |