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

com.github.thorbenkuck.netcom2.exceptions.ConnectionEstablishmentFailedException Maven / Gradle / Ivy

Go to download

NetCom2 is a lightweight, yet highly modular Client-Server-Communication-Framework, in the style of an EventBus

The newest version!
package com.github.thorbenkuck.netcom2.exceptions;

public class ConnectionEstablishmentFailedException extends NetComException {
	public ConnectionEstablishmentFailedException(String message) {
		super(message);
	}

	public ConnectionEstablishmentFailedException(Throwable throwable) {
		super(throwable);
	}

	public ConnectionEstablishmentFailedException(String message, Throwable throwable) {
		super(message, throwable);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy