Class for generating Exceptions which come from gazebo assertions. More...
#include <common/common.hh>

Public Member Functions | |
| AssertionInternalError (const char *_file, int _line, const std::string &_expr, const std::string &_function, const std::string &_msg="") | |
| Constructor for assertions. | |
| virtual | ~AssertionInternalError () |
| Destructor. | |
Public Member Functions inherited from gazebo::common::InternalError | |
| InternalError () | |
| Constructor. | |
| InternalError (const char *_file, int _line, const std::string &_msg) | |
| Default constructor. | |
| virtual | ~InternalError () |
| Destructor. | |
Public Member Functions inherited from gazebo::common::Exception | |
| Exception () | |
| Constructor. | |
| Exception (const char *_file, int _line, std::string _msg) | |
| Default constructor. | |
| virtual | ~Exception () |
| Destructor. | |
| std::string | GetErrorFile () const |
| Return the error function. | |
| std::string | GetErrorStr () const |
| Return the error string. | |
| void | Print () const |
| Print the exception to std out. | |
Class for generating Exceptions which come from gazebo assertions.
They include information about the assertion expression violated, function where problem appeared and assertion debug message.
| gazebo::common::AssertionInternalError::AssertionInternalError | ( | const char * | _file, |
| int | _line, | ||
| const std::string & | _expr, | ||
| const std::string & | _function, | ||
| const std::string & | _msg = "" |
||
| ) |
Constructor for assertions.
| [in] | _file | File name |
| [in] | _line | Line number where the error occurred |
| [in] | _expr | Assertion expression failed resulting in an internal error |
| [in] | _function | Function where assertion failed |
| [in] | _msg | Function where assertion failed |
|
virtual |
Destructor.