Ocean
|
Definition of a base exception for not implemented code. More...
Public Member Functions | |
NotImplementedException () | |
Creates a new exception for not implemented code without any message. More... | |
NotImplementedException (const char *message) | |
Creates a new exception for not implemented code with a message. More... | |
NotImplementedException (const std::string &message) | |
Creates a new exception for not implemented code with a message. More... | |
Public Member Functions inherited from Ocean::OceanException | |
OceanException ()=default | |
Creates a new OceanException object without any message. More... | |
OceanException (OceanException &&exception) noexcept | |
Move constructor. More... | |
OceanException (const OceanException &exception) noexcept | |
Copy constructor. More... | |
OceanException (const char *message) | |
Creates a new OceanException object with a message. More... | |
OceanException (const std::string &message) | |
Creates a new OceanException object with a message. More... | |
~OceanException () override | |
Destructs an exception object. More... | |
const char * | what () const noexcept override |
Returns the exception message. More... | |
OceanException & | operator= (OceanException &&exception) noexcept |
Move operator. More... | |
OceanException & | operator= (const OceanException &exception) noexcept |
Copy operator. More... | |
Definition of a base exception for not implemented code.
Ocean::NotImplementedException::NotImplementedException | ( | ) |
Creates a new exception for not implemented code without any message.
|
explicit |
Creates a new exception for not implemented code with a message.
message | Exception message |
|
explicit |
Creates a new exception for not implemented code with a message.
message | Exception message |