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

rpc.turbo.remote.RemoteException Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package rpc.turbo.remote;

public class RemoteException extends RuntimeException {
	private static final long serialVersionUID = 2308364793082349611L;

	public RemoteException() {
		super();
	}

	public RemoteException(String message) {
		super(message);
	}

	public RemoteException(String message, boolean writableStackTrace) {
		super(message, null, false, writableStackTrace);
	}

	public RemoteException(String message, Throwable cause) {
		super(message, cause);
	}

	public RemoteException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy