Class sunw.corba.CORBAException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sunw.corba.CORBAException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----sunw.orb.ORBException
                           |
                           +----sunw.corba.CORBAException

public class CORBAException
extends ORBException

Variable Index

 o None
Corba exception type None.
 o System
Corba exception type System.
 o User
Corba exception type User.

Constructor Index

 o CORBAException(int)
Partially specified constructor.
 o CORBAException(int, String)
Fully specified constructor.

Method Index

 o getExceptionId()
 o getExceptionType()
 o toString()

Variables

 o None
  public final static int None
Corba exception type None.
 o User
  public final static int User
Corba exception type User.
 o System
  public final static int System
Corba exception type System.

Constructors

 o CORBAException
  protected CORBAException(int type,
                           String id)
Fully specified constructor. This should only be called when instantiating specific exception subclasses.
Parameters:
type - The corba exception type (None, User, or System).
id - The corba exception id (a string representation of the exception class name).
 o CORBAException
  protected CORBAException(int type)
Partially specified constructor. Appends a null exception id before instantiation. (this should probably go away)
Parameters:
type - The corba exception type (None, User, or System).

Methods

 o getExceptionType
  public int getExceptionType()
 o getExceptionId
  public String getExceptionId()
 o toString
  public String toString()
Overrides:
toString in class ORBException

All Packages  Class Hierarchy  This Package  Previous  Next  Index