 |
ATLAS Offline Software
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
4#ifndef MuonTesterTree_THROWEXCEPT_H
5#define MuonTesterTree_THROWEXCEPT_H
10#define THROW_EXCEPTION(MESSAGE) \
12 std::stringstream except_str{}; \
13 except_str<<__FILE__<<":"<<__LINE__<<" --- "; \
14 except_str<<MESSAGE; \
15 throw std::runtime_error(except_str.str()); \