31 template <
class... ARGS>
32 explicit Exception(
const char* message, ARGS&&... args)
Exception(const char *message, ARGS &&... args)
Constructs an exception object, optionally formatting the message.
Definition: exception.h:32
The base for exception types in the Darwin framework.
Definition: exception.h:27
Generic utilities.
Definition: exception.h:24
string format(const char *format_string, ARGS &&... args)
A minimalistic string formatting built on top of the C-formatting facilities (xprintf formatting) ...
Definition: format.h:68
Exception(string message)
Constructs an exception object with the specified message.
Definition: exception.h:36