Etterna 0.74.4
Loading...
Searching...
No Matches
RageException.h
1#ifndef RAGE_EXCEPTION_H
2#define RAGE_EXCEPTION_H
3
4#include "config.hpp"
5#include <string>
6
11namespace RageException {
12void NORETURN
13Throw(const char* fmt, ...) PRINTF(1, 2);
14void
15SetCleanupHandler(void (*pHandler)(const std::string& sError));
16}
17
18#endif
Namespace for throwing fatal errors.
Definition RageException.h:11