All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----epp.EppUserError
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");
 
 EppUserError(String)
	EppUserError(String)
   
 EppUserError
EppUserError
public EppUserError(String s)
All Packages Class Hierarchy This Package Previous Next Index