fi.evolver.basics.spring.triggerable.TriggerableException Maven / Gradle / Ivy
package fi.evolver.basics.spring.triggerable;
import fi.evolver.utils.format.FormatUtils;
public class TriggerableException extends RuntimeException {
private static final long serialVersionUID = 1L;
public TriggerableException(Throwable cause, String message, Object... args) {
super(FormatUtils.format(message, args), cause);
}
public TriggerableException(String message, Object... args) {
super(FormatUtils.format(message, args));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy