Thread exception.
More...
#include <Thread.h>
|
| ThreadException (const char *message) noexcept |
| Constructor initializing message.
|
|
template<typename... Args> |
| ThreadException (const char *format, Args &&... args) noexcept |
| Formatting constructor.
|
|
| ExceptionBase () noexcept |
| Default Constructor.
|
|
| ExceptionBase (const ExceptionBase &ex) noexcept |
| Copy constructor.
|
|
| ExceptionBase (const ExceptionBase &&ex) noexcept |
| Move constructor.
|
|
const char * | what () const noexcept override |
| Overloaded from base class 'std::exception'.
|
|
void | formatMessage (const char *format, Args... args) noexcept |
| Formats the exception message according sprintf().
|
|
void | formatMessage (const char *message) noexcept |
| Formats the exception message when no arguments are given.
|
|
ThreadException | Function (const char *mangled_name, const char *func, const char *format, Args &&... args) |
| Formatting function with a class type_info and formatting the message.
|
|
ThreadException | Function (const char *mangled_name, const char *func, const char *message) |
| Formatting function with a class type_info and passing the message without formatting.
|
|
|
enum | |
| Enumerate which sets the buffer size for formatting. More...
|
|
std::unique_ptr< char > | _msg |
| Pointer to message string.
|
|
◆ ThreadException() [1/2]
sf::Thread::ThreadException::ThreadException |
( |
const char * |
message | ) |
|
|
inlineexplicitnoexcept |
Constructor initializing message.
◆ ThreadException() [2/2]
template<typename... Args>
sf::Thread::ThreadException::ThreadException |
( |
const char * |
format, |
|
|
Args &&... |
args |
|
) |
| |
|
inlineexplicitnoexcept |
The documentation for this class was generated from the following file: