Zserio C++ runtime library
1.0.0
Built for Zserio 2.13.0
|
#include <CppRuntimeException.h>
Public Member Functions | |
CppRuntimeException (const char *message="") | |
const char * | what () const noexceptoverride |
void | append (const char *message) |
void | append (const char *message, size_t messageLen) |
~CppRuntimeException () override=default | |
CppRuntimeException (const CppRuntimeException &other)=default | |
CppRuntimeException & | operator= (const CppRuntimeException &other)=default |
CppRuntimeException (CppRuntimeException &&other)=default | |
CppRuntimeException & | operator= (CppRuntimeException &&other)=default |
Exception thrown when an error within the Zserio C++ runtime library occurs.
Definition at line 20 of file CppRuntimeException.h.
|
explicit |
Constructor.
message | Description of the error. |
Definition at line 10 of file CppRuntimeException.cpp.
|
overridedefault |
Method generated by default.
|
default |
Method generated by default.
|
default |
Method generated by default.
void zserio::CppRuntimeException::append | ( | const char * | message | ) |
Appends a message to the description.
message | Description of the error to append. |
Definition at line 21 of file CppRuntimeException.cpp.
void zserio::CppRuntimeException::append | ( | const char * | message, |
size_t | messageLen | ||
) |
Appends a message of a known length to the description.
message | Description of the error to append. |
messageLen | Length of the message. |
Definition at line 28 of file CppRuntimeException.cpp.
|
default |
Method generated by default.
|
default |
Method generated by default.
|
overridenoexcept |
Definition at line 16 of file CppRuntimeException.cpp.