summaryrefslogtreecommitdiff
path: root/TAO/tao/Exception.i
blob: 56bf7a1e6a9108e86b9557001e92a09bf0dcf65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// -*- C++ -*-
//
// $Id$

ACE_INLINE CORBA::Exception*
CORBA::Exception::_downcast (CORBA::Exception* x)
{
  return x;
}

ACE_INLINE
CORBA::UserException::UserException (const CORBA::UserException &src)
  : CORBA::Exception (src)
{
}

ACE_INLINE CORBA::ULong
CORBA::SystemException::minor (void) const
{
  return this->minor_;
}

ACE_INLINE void
CORBA::SystemException::minor (CORBA::ULong m)
{
  this->minor_ = m;
}

ACE_INLINE CORBA::CompletionStatus
CORBA::SystemException::completed (void) const
{
  return this->completed_;
}

ACE_INLINE void
CORBA::SystemException::completed (CORBA::CompletionStatus c)
{
  this->completed_ = c;
}