blob: a8dfd8d0416b30558c1dc7696c6c2e1dce960f74 (
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
|
#include "tao/UserException.h"
#include "ace/SString.h"
#include "ace/OS_NS_string.h"
#if !defined (__ACE_INLINE__)
# include "tao/UserException.inl"
#endif /* __ACE_INLINE__ */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
CORBA::UserException &
CORBA::UserException::operator= (CORBA::UserException const & rhs)
{
this->Exception::operator= (rhs);
return *this;
}
// Virtual. Do not inline.
CORBA::TypeCode_ptr
CORBA::UserException::_tao_type () const
{
return nullptr;
}
ACE_CString
CORBA::UserException::_info () const
{
// @@ we can use the exception's typecode to dump all the data held
// within it ...
ACE_CString user_exception_info = "user exception, ID '";
user_exception_info += this->_rep_id ();
user_exception_info += "'";
return user_exception_info;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|