import "IOR.pidl";
Inheritance diagram for TAO_IOP::NotFound:
Public Member Functions | |
NotFound (void) | |
NotFound (const NotFound &) | |
~NotFound (void) | |
NotFound & | operator= (const NotFound &) |
virtual CORBA::Exception * | _tao_duplicate (void) const |
virtual void | _raise (void) const |
virtual void | _tao_encode (TAO_OutputCDR &) const |
virtual void | _tao_decode (TAO_InputCDR &) |
virtual CORBA::TypeCode_ptr | _tao_type (void) const |
Static Public Member Functions | |
void | _tao_any_destructor (void *) |
NotFound * | _downcast (CORBA::Exception *) |
const NotFound * | _downcast (CORBA::Exception const *) |
CORBA::Exception * | _alloc (void) |
NotFound |
Definition at line 39 of file IOR.pidl.
|
Definition at line 159 of file IORC.cpp.
00160 : CORBA::UserException ( 00161 "IDL:TAO_IOP/NotFound:1.0", 00162 "NotFound" 00163 ) 00164 { 00165 } |
|
|
|
Definition at line 167 of file IORC.cpp.
00168 { 00169 } |
|
Definition at line 205 of file IORC.cpp. References ACE_NEW_RETURN.
00206 { 00207 CORBA::Exception *retval = 0; 00208 ACE_NEW_RETURN (retval, ::TAO_IOP::NotFound, 0); 00209 return retval; 00210 } |
|
Reimplemented from CORBA::UserException. Definition at line 200 of file IORC.cpp.
00201 {
00202 return dynamic_cast<const NotFound *> (_tao_excp);
00203 }
|
|
Reimplemented from CORBA::UserException. Definition at line 194 of file IORC.cpp.
00195 {
00196 return dynamic_cast<NotFound *> (_tao_excp);
00197 }
|
|
Implements CORBA::UserException. Definition at line 224 of file IORC.cpp. References TAO_RAISE.
00225 { 00226 TAO_RAISE (*this); 00227 } |
|
Reimplemented from CORBA::Exception. Definition at line 186 of file IORC.cpp.
00187 { 00188 NotFound *_tao_tmp_pointer = 00189 static_cast<NotFound *> (_tao_void_pointer); 00190 delete _tao_tmp_pointer; 00191 } |
|
Implements CORBA::Exception. Definition at line 242 of file IORC.cpp. References ACE_THROW.
00246 { 00247 if (cdr >> *this) 00248 { 00249 return; 00250 } 00251 00252 ACE_THROW (CORBA::MARSHAL ()); 00253 } |
|
Implements CORBA::Exception. Definition at line 213 of file IORC.cpp. References ACE_NEW_RETURN.
00214 { 00215 CORBA::Exception *result = 0; 00216 ACE_NEW_RETURN ( 00217 result, 00218 ::TAO_IOP::NotFound (*this), 00219 0 00220 ); 00221 return result; 00222 } |
|
Implements CORBA::Exception. Definition at line 229 of file IORC.cpp. References ACE_THROW.
00233 { 00234 if (cdr << *this) 00235 { 00236 return; 00237 } 00238 00239 ACE_THROW (CORBA::MARSHAL ()); 00240 } |
|
Reimplemented from CORBA::UserException. Definition at line 256 of file IORC.cpp.
00257 { 00258 return ::TAO_IOP::_tc_NotFound; 00259 } |
|
|