![]() |
![]() |
|
Index
Source Files
Annotated Class List
Alphabetical Class List
Class Hierarchy
Graphical Class Hierarchy
|
||
![]() |
![]() |
#include <CallStack.h>
Public Member Functions | |
| Context () | |
| void | caught (std::exception &) |
| void | caught () |
Public Attributes | |
| std::string | exception |
| bool | ignore |
Definition at line 66 of file CallStack.h.
|
|
Definition at line 69 of file CallStack.h. References ignore.
00069 : ignore(false) {} |
|
|
Definition at line 135 of file CallStack.cpp. References exception.
00136 {
00137 exception = "unknown exception";
00138 }
|
|
|
Definition at line 121 of file CallStack.cpp. References exception. Referenced by FIX::CallStack::caught().
00122 {
00123 #if TYPEINFO_IN_STD
00124 const std::type_info&
00125 #else
00126 const type_info&
00127 #endif
00128 type = typeid(e);
00129
00130 std::stringstream s;
00131 s << type.name() << ": " << std::string(e.what());
00132 exception = s.str();
00133 }
|
|
|
Definition at line 73 of file CallStack.h. Referenced by caught(), and FIX::CallStack::output(). |
|
|
Definition at line 74 of file CallStack.h. Referenced by FIX::CallStack::CallStack(), FIX::CallStack::caught(), Context(), FIX::CallStack::ignore(), and FIX::CallStack::~CallStack(). |
1.3.6-20040222 written by Dimitri van Heesch,
© 1997-2001