예제 #1
0
파일: Direct.cpp 프로젝트: bholl/zeroc-ice
void
IceInternal::Direct::setUserException(const Ice::UserException& ue)
{
    _userException.reset(dynamic_cast<Ice::UserException*>(ue.ice_clone()));
}
예제 #2
0
 void exception(const Ice::UserException& e)
 {
     Lock sync(*this);
     _exception.reset(e.ice_clone());
     notify();
 }
예제 #3
0
void 
IceInternal::Direct::setUserException(const Ice::UserException& ue)
{
    _userException.reset(ue.ice_clone());
}