void AMDInterceptorI::setActualStatus(const IceUtil::Exception& e) { IceUtil::Mutex::Lock lock(_mutex); _exception.reset(e.ice_clone()); _actualStatus = Ice::DispatchAsync; }
void CPatchDlg::handleException(const IceUtil::Exception& e) { try { e.ice_throw(); } catch(const IceUtil::Exception& ex) { ostringstream ostr; ostr << ex; string s = ostr.str(); AfxMessageBox(CString(s.c_str()), MB_OK|MB_ICONEXCLAMATION); } reset(L" Ready"); }
void AMDInterceptorI::setException(const IceUtil::Exception& e) { IceUtil::Mutex::Lock lock(_mutex); ICE_SET_EXCEPTION_FROM_CLONE(_exception, e.ice_clone()); }