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