Main MRPT website > C++ reference for MRPT 1.9.9
CHypothesisNotFoundException.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include "graphs-precomp.h" // Precompiled headers
11 
13 
14 std::ostringstream HypothesisNotFoundException::m_cnvt;
15 
18  : runtime_error("Hypothesis between set of nodes was not found")
19 {
20  using namespace mrpt;
21 
22  this->clear();
23  m_to = to;
24  m_from = from;
25 
26  // TODO - Do not allocate it on the stack
27  // http://stackoverflow.com/a/23742555/2843583
28  m_msg = std::runtime_error::what();
29  m_msg += "- ";
30  m_msg +=
31  format("[from] %lu ==> ", static_cast<unsigned long>(m_from)).c_str();
32  m_msg += format("[to] %lu", static_cast<unsigned long>(m_to)).c_str();
33 }
34 
36  : runtime_error("Hypothesis with the given ID was not found")
37 {
38  using namespace mrpt;
39 
40  this->clear();
41  m_id = id;
42 
43  m_msg = std::runtime_error::what();
44  m_msg += format("- ID:%lu", static_cast<unsigned long>(id)).c_str();
45 }
46 
48 {
51  m_id = SIZE_MAX;
52  m_msg.clear();
53 }
54 
57 {
58  return m_msg;
59 }
60 
61 const char* HypothesisNotFoundException::what() const throw()
62 {
63  m_cnvt.str("");
64  m_cnvt << getErrorMsg();
65  return m_cnvt.str().c_str();
66 }
#define SIZE_MAX
#define INVALID_NODEID
HypothesisNotFoundException(mrpt::utils::TNodeID from, mrpt::utils::TNodeID to)
uint64_t TNodeID
The type for node IDs in graphs of different types.
Definition: types_simple.h:49
GLsizei const GLchar ** string
Definition: glext.h:4101
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
GLuint id
Definition: glext.h:3909
GLenum GLsizei GLenum format
Definition: glext.h:3531



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019