FileDocCategorySizeDatePackage
UserException.javaAPI DocJava SE 5 API1130Fri Aug 26 14:58:32 BST 2005org.omg.CORBA

UserException

public abstract class UserException extends Exception implements org.omg.CORBA.portable.IDLEntity
The root class for CORBA IDL-defined user exceptions. All CORBA user exceptions are checked exceptions, which means that they need to be declared in method signatures.
see
documentation on Java IDL exceptions
version
1.28 09/09/97

Fields Summary
Constructors Summary
protected UserException()
Constructs a UserException object. This method is called only by subclasses.

	super();
    
protected UserException(String reason)
Constructs a UserException object with a detail message. This method is called only by subclasses.

param
reason a String object giving the reason for this exception

	super(reason);
    
Methods Summary