LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
exception.h
Go to the documentation of this file.
1 #ifndef messagefacility_Utilities_exception_h
2 #define messagefacility_Utilities_exception_h
3 
4 #include "cetlib_except/coded_exception.h"
5 
6 #include <string>
7 
8 namespace mf {
9  namespace errors {
11  } // error
12 
13  namespace detail {
14  std::string translate(errors::error);
15  }
16 
17  using Exception = cet::coded_exception<errors::error, detail::translate>;
18 } // mf
19 
20 #endif /* messagefacility_Utilities_exception_h */
21 
cet::coded_exception< errors::error, detail::translate > Exception
Definition: exception.h:17
std::string translate(error)
Definition: exception.cc:12