#include <TypeCode.h>
Inheritance diagram for CORBA::TypeCode::Bounds:
Public Member Functions | |
Bounds (void) | |
Constructor. | |
virtual CORBA::Exception * | _tao_duplicate (void) const |
virtual void | _raise (void) const |
virtual void | _tao_encode (TAO_OutputCDR &cdr) const |
virtual void | _tao_decode (TAO_InputCDR &cdr) |
Static Public Member Functions | |
static Bounds * | _downcast (CORBA::Exception *ex) |
static CORBA::Exception * | _alloc (void) |
Exception thrown when attempting to pass an out-of-bounds index value to a TypeCode
operation that accepts a member index argument.
Definition at line 75 of file TypeCode.h.
CORBA::TypeCode::Bounds::Bounds | ( | void | ) |
Constructor.
Definition at line 222 of file TypeCode.cpp.
00223 : CORBA::UserException ("IDL:omg.org/CORBA/TypeCode/Bounds:1.0", 00224 "Bounds") 00225 { 00226 }
CORBA::Exception * CORBA::TypeCode::Bounds::_alloc | ( | void | ) | [static] |
Definition at line 235 of file TypeCode.cpp.
References ACE_NEW_RETURN.
00236 { 00237 CORBA::Exception *retval = 0; 00238 ACE_NEW_RETURN (retval, ::CORBA::TypeCode::Bounds, 0); 00239 return retval; 00240 }
CORBA::TypeCode::Bounds * CORBA::TypeCode::Bounds::_downcast | ( | CORBA::Exception * | ex | ) | [static] |
void CORBA::TypeCode::Bounds::_raise | ( | void | ) | const [virtual] |
void CORBA::TypeCode::Bounds::_tao_decode | ( | TAO_InputCDR & | cdr | ) | [virtual] |
CORBA::Exception * CORBA::TypeCode::Bounds::_tao_duplicate | ( | void | ) | const [virtual] |
Implements CORBA::Exception.
Definition at line 243 of file TypeCode.cpp.
References ACE_NEW_RETURN.
00244 { 00245 CORBA::Exception *result; 00246 ACE_NEW_RETURN (result, 00247 CORBA::TypeCode::Bounds (*this), 00248 0); 00249 return result; 00250 }
void CORBA::TypeCode::Bounds::_tao_encode | ( | TAO_OutputCDR & | cdr | ) | const [virtual] |
Implements CORBA::Exception.
Definition at line 259 of file TypeCode.cpp.
00260 { 00261 if (cdr << this->_rep_id ()) 00262 { 00263 return; 00264 } 00265 00266 throw ::CORBA::MARSHAL (); 00267 }