| 134 | |
| 135 | |
| 136 | std::string Exception::getStackTraceString() const |
| 137 | { |
| 138 | #ifdef STD_EXCEPTION_HAS_STACK_TRACE |
| 139 | return StackTrace::toString(get_stack_trace_frames(), 0, get_stack_trace_size()); |
| 140 | #else |
| 141 | return trace.toString(); |
| 142 | #endif |
| 143 | } |
| 144 | |
| 145 | Exception::FramePointers Exception::getStackFramePointers() const |
| 146 | { |
no test coverage detected