Go to the source code of this file.
|
namespace | Ipopt |
| This file contains a base class for all exceptions and a set of macros to help with exceptions.
|
|
◆ THROW_EXCEPTION
#define THROW_EXCEPTION |
( |
|
__except_type, |
|
|
|
__msg |
|
) |
| throw __except_type( (__msg), (__FILE__), (__LINE__) ); |
◆ ASSERT_EXCEPTION
#define ASSERT_EXCEPTION |
( |
|
__condition, |
|
|
|
__except_type, |
|
|
|
__msg |
|
) |
| |
Value: if (! (__condition) ) { \
std::string newmsg = #__condition; \
newmsg += " evaluated false: "; \
newmsg += __msg; \
throw __except_type( (newmsg), (__FILE__), (__LINE__) ); \
}
Definition at line 135 of file IpException.hpp.
◆ DECLARE_STD_EXCEPTION
#define DECLARE_STD_EXCEPTION |
( |
|
__except_type | ) |
|
Value:
{ \
public: \
__except_type(
const std::string& msg,
const std::string& fname,
Ipopt::Index line) \
__except_type(const __except_type& copy) \
private: \
__except_type(); \
}
This is the base class for all exceptions.
void operator=(const IpoptException &)
Default Assignment Operator.
ipindex Index
Type of all indices of vectors, matrices etc.
Definition at line 143 of file IpException.hpp.