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

io.servicefabric.transport.TransportNotFoundException Maven / Gradle / Ivy

package io.servicefabric.transport;

/** Thrown to indicate that {@link ITransport} can't return transport client is asking for. */
public final class TransportNotFoundException extends TransportException {
	private static final long serialVersionUID = 1L;

	public TransportNotFoundException(String message) {
		super(null, message);
	}

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

	public TransportNotFoundException(Throwable cause) {
		super(null, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy