Exception class which stores a human-readable error description. More...
#include <Exception.h>
Public Member Functions | |
template<typename... Args> | |
Exception (const char *fmt, Args &&... args) | |
Variadic constructor to support printf-style arguments. More... | |
Exception class which stores a human-readable error description.
Creates a std::runtime_error
with std::runtime_error::what()
set to the formatted string.
Definition at line 30 of file Exception.h.
|
inline |
Variadic constructor to support printf-style arguments.
fmt | Printf like format string |
args | Arguments specifying data to print |
Definition at line 37 of file Exception.h.