fire v0.19.0
Framework for sImulation and Reconstruction of Events
Exception.h
1#ifndef FRAMEWORK_EXCEPTION_H
2#define FRAMEWORK_EXCEPTION_H
3
4#include "fire/exception/Exception.h"
5
6namespace framework::exception {
7using Exception = fire::Exception;
8}
9
10#define EXCEPTION_RAISE(CATEGORY, MSG) throw fire::Exception(CATEGORY, MSG);
11
12#endif
Standard base exception class with some useful output information.
Definition: Exception.h:18