
com.remondis.limbus.exceptions.AlreadyInitializedException 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;
import com.remondis.limbus.Initializable;
/**
* This exception is thrown if the lifecycle methods of {@link Initializable} are not called in a legal order. Example:
* This exception is thrown if an {@link Initializable} is initialized more than one time.
*
* @author schuettec
*
*/
public class AlreadyInitializedException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public AlreadyInitializedException() {
super();
}
public AlreadyInitializedException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public AlreadyInitializedException(String message, Throwable cause) {
super(message, cause);
}
public AlreadyInitializedException(String message) {
super(message);
}
public AlreadyInitializedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy