All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fi.evolver.utils.CommunicationException Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
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