MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 /** \example core_exceptions_example/test.cpp */
11 
12 //! [example-nested-exceptions]
13 
14 #include <mrpt/core/exceptions.h>
15 #include <iostream>
16 
18 {
20  THROW_EXCEPTION("Aw!");
21  MRPT_END
22 }
23 
25 {
28  MRPT_END
29 }
30 
32 {
35  MRPT_END
36 }
37 
38 int main()
39 {
40  try
41  {
43  return 0;
44  }
45  catch (const std::exception& e)
46  {
47  std::cerr << mrpt::exception_to_str(e);
48  return -1;
49  }
50 }
51 //! [example-nested-exceptions]
#define MRPT_START
Definition: exceptions.h:241
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
void test_except_2nd_lvl()
void test_except_toplevel()
#define MRPT_END
Definition: exceptions.h:245
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
void test_except_3rd_lvl()



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020