
com.remondis.limbus.exceptions.LimbusException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of limbus-engine-api Show documentation
Show all versions of limbus-engine-api Show documentation
This module only contains interfaces that are needed to develop plugins for the Limbus Engine.
package com.remondis.limbus.exceptions;
/**
* This is the most general exception type for the Limbus API.
*
* @author schuettec
*
*/
public class LimbusException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public LimbusException() {
}
public LimbusException(String message) {
super(message);
}
public LimbusException(Throwable cause) {
super(cause);
}
public LimbusException(String message, Throwable cause) {
super(message, cause);
}
public LimbusException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy