All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class epp.EppUserError

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----epp.EppUserError

public class EppUserError
extends Error
The EppUserError class is an exception that should be thrown when error is found in the input program EPP processes.

Normally, plug-in prorammers should not "new" this class directly, but should call the error method and throw the returned value as shown below.

 throw error("message");
If the situation does not allow the error method to be called, call the static method of the Epp class as follows.
 throw Epp.error("message");

See Also:
error, error, error, fatal

Constructor Index

 o EppUserError(String)

Constructors

 o EppUserError
 public EppUserError(String s)

All Packages  Class Hierarchy  This Package  Previous  Next  Index