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

convex.peer.ConfigException Maven / Gradle / Ivy

The newest version!
package convex.peer;

/**
 * Message thrown when a failure occurs during peer configuration
 */
@SuppressWarnings("serial")
public class ConfigException extends PeerException {

	public ConfigException(String message, Throwable cause) {
		super(message, cause);
		
	}
	
	public ConfigException(String message) {
		this(message, null);
		
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy