Example #1
0
void
IceInternal::Direct::setUserException(const Ice::UserException& ue)
{
    _userException.reset(dynamic_cast<Ice::UserException*>(ue.ice_clone()));
}
Example #2
0
 void exception(const Ice::UserException& e)
 {
     Lock sync(*this);
     _exception.reset(e.ice_clone());
     notify();
 }
Example #3
0
void 
IceInternal::Direct::setUserException(const Ice::UserException& ue)
{
    _userException.reset(ue.ice_clone());
}