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

convex.peer.LaunchException Maven / Gradle / Ivy

package convex.peer;

/**
 * Exception thrown when a failure occurs during peer launch
 */
@SuppressWarnings("serial")
public class LaunchException extends PeerException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy