IODA
test_exceptions.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 #include <exception>
8 #include <iostream>
9 #include <string>
10 
11 #include "ioda/Exception.h"
12 
14  throw ioda::Exception("This is the inner exception.", ioda_Here())
15  .add<int>("some-value", 24)
16  .add<double>("pi", 3.141592654)
17  .add<std::string>("another-string", "test");
18 }
19 
21  try {
23  } catch (std::exception) {
24  throw;
25  }
26 }
27 
29  try {
31  } catch (...) {
32  std::throw_with_nested(ioda::Exception("Caught and encapsulated an exception.", ioda_Here()));
33  }
34 }
35 
36 int main(int, char**) {
37  using namespace std;
38  const int requiredPasses = 3;
39  int passes = 0;
40 
41  cout << "Single exception test.\n" << endl;
42  try {
44  } catch (const exception& e) {
46  passes++;
47  }
48 
49  cout << "\n\n\nRethrow exception test. Output should be same as above.\n" << endl;
50  try {
52  } catch (const exception& e) {
54  passes++;
55  }
56 
57  cout << "\n\n\nNested exception test. Should return two exceptions.\n" << endl;
58  try {
60  } catch (const exception& e) {
62  passes++;
63  }
64 
65  return (passes == requiredPasses) ? 0 : 1;
66 }
IODA's error system.
The ioda exception class.
Definition: Exception.h:54
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
Definition: Exception.h:75
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.
Definition: Exception.cpp:48
#define ioda_Here()
void throws_exception_trivial_rethrow()
int main(int, char **)
void throws_exception_nesting()
void throws_exception_inner()