Class NotImplementedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.priint.pubserver.exception.PubServerException
-
- com.priint.pubserver.plugin.exception.NotImplementedException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotImplementedException extends PubServerException
Thrown if a class implementing one of the interfaces definedcom.priint.pubserver.plugin.interfacesdoes not support a method defined in the interface.E.g. many of the methods of the
Connectorinterface are not mandatory. That means, you have to implemented a stub, that throws is error. This will tell the caller the state of affairs.- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNOT_IMPLEMENTED_YETDefault message text.
-
Constructor Summary
Constructors Constructor Description NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String errorMessage)NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String errorMessage, java.lang.Throwable cause)NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String message, java.lang.Throwable cause, java.lang.String... parameters)NotImplementedException(java.lang.Object caller, java.lang.String errorMessage)NotImplementedException(java.lang.Object caller, java.lang.String errorMessage, java.lang.Throwable cause)
-
Method Summary
-
Methods inherited from class com.priint.pubserver.exception.PubServerException
getCode, getErrorCodeInfo, getErrorsStack, getExceptionsStack, getFormattedMessage, getFormattedMessageTrace, getMessageStack, getModule, getParameters, retrieveErrorCodeInfo, retrieveErrorsStack
-
-
-
-
Field Detail
-
NOT_IMPLEMENTED_YET
public static final java.lang.String NOT_IMPLEMENTED_YET
Default message text.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NotImplementedException
public NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String message, java.lang.Throwable cause, java.lang.String... parameters)
-
NotImplementedException
public NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String errorMessage, java.lang.Throwable cause)
-
NotImplementedException
public NotImplementedException(java.lang.Object caller, int errorCode, java.lang.String errorMessage)
-
NotImplementedException
public NotImplementedException(java.lang.Object caller, java.lang.String errorMessage, java.lang.Throwable cause)
-
NotImplementedException
public NotImplementedException(java.lang.Object caller, java.lang.String errorMessage)
-
-