LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
exception.cc
Go to the documentation of this file.
2 
3 std::string
5 {
6  switch (code) {
8  return "Configuration error";
10  return "Logic error";
12  return "Other error";
13  default:
14  return "Unknown code";
15  }
16 }
17 
18 // ======================================================================
19 
std::string translate(errors::error)
Definition: exception.cc:4