20 add(
"Reason", std::string(msg));
29 add(
"source_filename", loc.file_name());
30 add(
"source_line", loc.line());
31 add(
"source_function", loc.function_name());
32 add(
"source_column", loc.column());
43 static const char errmsg[] =
"An unknown / unhandleable exception was encountered in IODA.\n";
49 out <<
"Exception: level: " << level <<
"\n" << e.what() << std::endl;
51 std::rethrow_if_nested(e);
52 }
catch (
const std::exception& f) {
55 out <<
"exception: level: " << level
56 <<
"\n\tException at this level is not derived from std::exception." << std::endl;
The ioda exception class.
virtual ~Exception() noexcept
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
virtual const char * what() const noexcept
Print the error message.
void add_source_location(const ::ioda::source_location &loc)
Exception(const ::ioda::source_location &loc=source_location::current(), const Options &opts=Options{})
Quick and easy key-value container that stringifies all values.
void enumVals(std::ostream &out, int level=1) const
List all stored values.
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.