42c42
< panic("%s for base class called.\n", __PRETTY_FUNCTION__);
---
> return _isReset ? "RESET" : "KILL";
48c48
< panic("%s for base class called.\n", __PRETTY_FUNCTION__);
---
> return _isReset;
51,52c51,54
< sc_unwind_exception::sc_unwind_exception() {}
< sc_unwind_exception::sc_unwind_exception(const sc_unwind_exception &) {}
---
> sc_unwind_exception::sc_unwind_exception() : _isReset(false) {}
> sc_unwind_exception::sc_unwind_exception(const sc_unwind_exception &e) :
> _isReset(e._isReset)
> {}