Go to the source code of this file.
|
| namespace | MuonGM |
| | Ensure that the Athena extensions are properly loaded.
|
◆ THROW_EXCEPT
| #define THROW_EXCEPT |
( |
| MESSAGE | ) |
|
Value: { \
std::stringstream except_sstr{}; \
except_sstr<<__FILE__<<":"<<__LINE__<<" ("; \
except_sstr<<idHelperSvc()->toString(identify())<<") "; \
except_sstr<<MESSAGE; \
throw std::runtime_error(except_sstr.str()); \
}
Definition at line 24 of file MuonDetDescr/MuonReadoutGeometry/src/TgcReadoutElement.cxx.
24#define THROW_EXCEPT(MESSAGE) \
25 { \
26 std::stringstream except_sstr{}; \
27 except_sstr<<__FILE__<<":"<<__LINE__<<" ("; \
28 except_sstr<<idHelperSvc()->toString(identify())<<") "; \
29 except_sstr<<MESSAGE; \
30 throw std::runtime_error(except_sstr.str()); \
31 }