sap.ai.st.cm.plugins.ciintegration.odataclient.CMODataClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ci-integration-lib-solman Show documentation
Show all versions of ci-integration-lib-solman Show documentation
SAP SOLMAN Change Management Integration
The newest version!
package sap.ai.st.cm.plugins.ciintegration.odataclient;
/**
* Root of the exception hierarchy for all exceptions specific
* to the CMODataClient.
*/
public class CMODataClientException extends Exception {
private static final long serialVersionUID = -404548464645983071L;
public CMODataClientException() {
this((String)null);
}
public CMODataClientException(String message) {
this(message, null);
}
public CMODataClientException(Throwable cause) {
this(null, cause);
}
public CMODataClientException(String message, Throwable cause) {
this(message, cause, true, true);
}
public CMODataClientException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}