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

org.littleshoot.proxy.UnknownTransportProtocolException Maven / Gradle / Ivy

Go to download

LittleProxy is a high performance HTTP proxy written in Java and using the Netty networking framework.

There is a newer version: 1.1.2
Show newest version
package org.littleshoot.proxy;

/**
 * This exception indicates that the system was asked to use a TransportProtocol that it didn't know how to handle.
 */
public class UnknownTransportProtocolException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public UnknownTransportProtocolException(TransportProtocol transportProtocol) {
        super(String.format("Unknown TransportProtocol: %1$s", transportProtocol));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy