public class MediationConfigurationException extends MediationException
Mediation.init()
method or
mediate
method. For instance, if the mediation primitive fails to obtain a database
connection the primitive may throw this exception to indicate the fact.
In the case where another checked or unchecked exception is caught by the
mediation primitive as a result of a configuration error it should be used
to create an instance of this exception. The
MediationConfigurationException(String, Throwable)
or
MediationConfigurationException(Throwable)
constructors should be used to ensure that no exception information is lost.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$sccsid |
static java.lang.String |
COPYRIGHT |
Constructor and Description |
---|
MediationConfigurationException()
Default constructor
|
MediationConfigurationException(java.lang.String message)
Constructor which takes a message as the only parameter.
|
MediationConfigurationException(java.lang.String message,
java.lang.Throwable cause)
Constructor which takes a message, and a causal exception.
|
MediationConfigurationException(java.lang.Throwable cause)
Constructor which takes a causal exception.
|
getExceptionMetadata, getLoggingMetadata, printStackTrace, printStackTrace, setExceptionMetadata, setLoggingMetadata
public static final java.lang.String COPYRIGHT
public static final java.lang.String $sccsid
public MediationConfigurationException()
public MediationConfigurationException(java.lang.String message)
message
- the exception messagepublic MediationConfigurationException(java.lang.String message, java.lang.Throwable cause)
message
- the exception messagecause
- the causal exceptionpublic MediationConfigurationException(java.lang.Throwable cause)
cause
- the causal exception