libcppa
Version 0.1
|
#include <exception.hpp>
Public Member Functions | |
const char * | what () const throw () |
Protected Member Functions | |
exception (std::string &&what_str) | |
exception (const std::string &what_str) |
Base class for libcppa exceptions.
cppa::exception::exception | ( | std::string && | what_str | ) | [protected] |
Creates an exception with the error string what_str
.
what_str | Error message as rvalue string. |
cppa::exception::exception | ( | const std::string & | what_str | ) | [protected] |
Creates an exception with the error string what_str
.
what_str | Error message as string. |
const char* cppa::exception::what | ( | ) | const throw () |
Returns the error message.