Stride Reference Manual
- generated for commit 9643b11
|
Basic exception class: needed to prevent clang-tidy warning "thrown exception type is not nothrow copy constructible". More...
#include <Exception.h>
Public Member Functions | |
Exception (std::string msg) | |
Straightforward constructor. More... | |
const char * | what () const noexceptoverride |
Return the message. More... | |
~Exception () noexceptoverride=default | |
Default constructor. More... | |
Private Attributes | |
std::string | m_msg |
Basic exception class: needed to prevent clang-tidy warning "thrown exception type is not nothrow copy constructible".
Definition at line 28 of file Exception.h.
|
inlineexplicit |
Straightforward constructor.
Definition at line 32 of file Exception.h.
|
overridedefaultnoexcept |
|
inlineoverridenoexcept |
Return the message.
Definition at line 35 of file Exception.h.
References m_msg, and ~Exception().
|
private |
Definition at line 41 of file Exception.h.
Referenced by what().