Esempio n. 1
0
CSraException::CSraException(const CSraException& other)
    : CException( other),
      m_RC(other.m_RC),
      m_Param(other.m_Param)
{
    x_Assign(other);
}
Esempio n. 2
0
 CTSE_Lock& operator=(const CTSE_Lock& lock)
     {
         if ( m_Info != lock.m_Info ) {
             Reset();
             x_Assign(lock);
         }
         return *this;
     }
Esempio n. 3
0
 CTSE_Lock(const CTSE_LoadLock& load_lock)
     {
         x_Assign(load_lock);
     }
Esempio n. 4
0
CException::CException(const CException& other)
: m_Predecessor(0)
{
    x_Assign(other);
}
Esempio n. 5
0
CInvalidChoiceSelection::CInvalidChoiceSelection(
    const CInvalidChoiceSelection& other)
    : CSerialException(other)
{
    x_Assign(other);
}