io.axway.iron.error.StoreException Maven / Gradle / Ivy
The newest version!
package io.axway.iron.error;
import java.util.function.*;
import io.axway.alf.Arguments;
import io.axway.alf.exception.FormattedRuntimeException;
/**
* The root exception for all exception related to store.
*/
public class StoreException extends FormattedRuntimeException {
public StoreException() {
}
public StoreException(Throwable cause) {
super(cause);
}
public StoreException(String message) {
super(message);
}
public StoreException(String message, Throwable cause) {
super(message, cause);
}
public StoreException(String message, Consumer args) {
super(message, args);
}
public StoreException(String message, Consumer args, Throwable cause) {
super(message, args, cause);
}
}