com.belladati.sdk.exception.BellaDatiRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.exception;
/**
* Common superclass for all unchecked BellaDati exceptions. Catch this if you
* want to ensure you're dealing with any SDK exceptions while still allowing
* other RuntimeExceptions to go through.
*
* @author Chris Hennigfeld
*/
public abstract class BellaDatiRuntimeException extends RuntimeException {
/** The serialVersionUID */
private static final long serialVersionUID = -1248473202460066206L;
protected BellaDatiRuntimeException(String message) {
super(message);
}
protected BellaDatiRuntimeException(Throwable cause) {
super(cause);
}
protected BellaDatiRuntimeException(String message, Throwable cause) {
super(message, cause);
}
}