Classes | Namespaces | Macros | Functions
exception.h File Reference
#include <exception>
#include <sstream>
Include dependency graph for exception.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  exotica::Exception
 
class  exotica::SolveException
 

Namespaces

 exotica
 

Macros

#define ThrowNamed(m)
 
#define ThrowPretty(m)
 

Functions

Exception::ReportingType exotica::operator| (Exception::ReportingType a, Exception::ReportingType b) noexcept
 

Macro Definition Documentation

#define ThrowNamed (   m)
Value:
{ \
std::stringstream ss; \
ss << m; \
throw exotica::Exception(ss.str(), __FILE__, __PRETTY_FUNCTION__, __LINE__, this->object_name_); \
}
#define __PRETTY_FUNCTION__
A set of debugging tools: basically these provide easy ways of checking code execution through std::c...
Definition: printable.h:43

Definition at line 42 of file exception.h.

#define ThrowPretty (   m)
Value:
{ \
std::stringstream ss; \
ss << m; \
throw exotica::Exception(ss.str(), __FILE__, __PRETTY_FUNCTION__, __LINE__); \
}
#define __PRETTY_FUNCTION__
A set of debugging tools: basically these provide easy ways of checking code execution through std::c...
Definition: printable.h:43

Definition at line 36 of file exception.h.



exotica_core
Author(s): Yiming Yang, Michael Camilleri
autogenerated on Sat Apr 10 2021 02:34:49