| 47 | } |
| 48 | |
| 49 | void captured_exception::set ( const char* a_name, const char* info ) throw() { |
| 50 | my_exception_name = duplicate_string( a_name ); |
| 51 | my_exception_info = duplicate_string( info ); |
| 52 | } |
| 53 | |
| 54 | void captured_exception::clear () throw() { |
| 55 | deallocate_via_handler_v3 (const_cast<char*>(my_exception_name)); |
nothing calls this directly
no test coverage detected