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 details in https://www.mrpt.org/License |
8  +---------------------------------------------------------------------------+
9  */
10 
11 #include <mrpt/core/exceptions.h>
12 #include <mrpt/system/backtrace.h>
13 #include <iostream>
14 
15 class Foo
16 {
17  public:
18  static int func1(int a, int b)
19  {
22  std::cout << bt.asString();
23  return a + b;
24  }
25 };
26 
27 int main()
28 {
29  try
30  {
31  Foo::func1(1, 2);
32  return 0;
33  }
34  catch (const std::exception& e)
35  {
36  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
37  return -1;
38  }
39 }
void getCallStackBackTrace(TCallStackBackTrace &out_bt)
Returns a list of strings representing the current call stack backtrace.
Definition: backtrace.cpp:32
See: getCallStackBackTrace()
Definition: backtrace.h:33
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
std::string asString() const
Prints all backtrace entries, one per line in a human-readable format.
Definition: backtrace.cpp:124
static int func1(int a, int b)



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