summaryrefslogtreecommitdiff
path: root/TAO/tao/UserException.inl
blob: 0e1d32952645b6939d4e353e455e1dcd9c2c0c53 (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
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
CORBA::UserException::UserException (void)
{
}

ACE_INLINE
CORBA::UserException::UserException (char const * repository_id,
                                     char const * local_name)
  : CORBA::Exception (repository_id,
                      local_name)
{
}

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

ACE_INLINE CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception * exception)
{
  return dynamic_cast<CORBA::UserException *> (exception);
}

ACE_INLINE const CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception const * exception)
{
  return dynamic_cast<const CORBA::UserException *> (exception);
}

TAO_END_VERSIONED_NAMESPACE_DECL