| 77 | } |
| 78 | |
| 79 | captured_exception* captured_exception::allocate ( const char* a_name, const char* info ) { |
| 80 | captured_exception *e = (captured_exception*)allocate_via_handler_v3( sizeof(captured_exception) ); |
| 81 | if ( e ) { |
| 82 | ::new (e) captured_exception(a_name, info); |
| 83 | e->my_dynamic = true; |
| 84 | } |
| 85 | return e; |
| 86 | } |
| 87 | |
| 88 | const char* captured_exception::name() const throw() { |
| 89 | return my_exception_name; |
no test coverage detected