Package com.isode.mhfcm
Class ConfigInconsistencyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.isode.mhfcm.MHFCMException
-
- com.isode.mhfcm.ConfigInconsistencyException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigInconsistencyException extends MHFCMException
Thrown when the API determines that information about the configuration that is held in the directory does not correspond with the live configuration. This may happen, for example, if the API is used to request information about configuration which has been created in the directory but which has not yet been read and acted on by the Queue Manager.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigInconsistencyException()
ConfigInconsistencyException(java.lang.String message)
ConfigInconsistencyException(java.lang.String message, java.lang.Throwable cause)
ConfigInconsistencyException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
ConfigInconsistencyException(java.lang.Throwable cause)
-
-
-
Constructor Detail
-
ConfigInconsistencyException
public ConfigInconsistencyException()
-
ConfigInconsistencyException
public ConfigInconsistencyException(java.lang.String message)
- Parameters:
message
- text for exception
-
ConfigInconsistencyException
public ConfigInconsistencyException(java.lang.Throwable cause)
- Parameters:
cause
- the Throwable which caused this exception
-
ConfigInconsistencyException
public ConfigInconsistencyException(java.lang.String message, java.lang.Throwable cause)
- Parameters:
message
- message textcause
- the Throwable which caused this exception
-
ConfigInconsistencyException
public ConfigInconsistencyException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
- Parameters:
message
- text for exceptioncause
- the Throwable which caused this exceptionenableSuppression
- whether to supress or notwritableStackTrace
- whether stack trace should be written
-
-