Package com.verisign.epp.exception
Class EPPException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.verisign.epp.exception.EPPException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
EnvException
,EPPAssemblerException
,EPPCodecException
,EPPCommandException
,EPPConException
,EPPEnvException
,EPPEventException
,EPPHandleEventException
,EPPLogException
,EPPParserException
,EPPPollQueueException
public class EPPException extends java.lang.Exception
Represents the base class for all EPP package exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EPPException(java.lang.String aInfo)
Constructor forEPPException
that requires a infoString
description.EPPException(java.lang.String aInfo, java.lang.Throwable aCause)
Constructor forEPPException
that requires a infoString
description and a causeThrowable
.
-
-
-
Constructor Detail
-
EPPException
public EPPException(java.lang.String aInfo)
Constructor forEPPException
that requires a infoString
description.- Parameters:
aInfo
- text description
-
EPPException
public EPPException(java.lang.String aInfo, java.lang.Throwable aCause)
Constructor forEPPException
that requires a infoString
description and a causeThrowable
.- Parameters:
aInfo
- text descriptionaCause
- Cause of theEPPException
-
-