org.littleshoot.proxy.UnknownTransportProtocolError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of littleproxy Show documentation
Show all versions of littleproxy Show documentation
LittleProxy is a high performance HTTP proxy written in Java and using the Netty networking framework.
package org.littleshoot.proxy;
/**
* This error indicates that the system was asked to use a TransportProtocol
* that it didn't know how to handle.
*/
public class UnknownTransportProtocolError extends Error {
private static final long serialVersionUID = 1L;
public UnknownTransportProtocolError(TransportProtocol transportProtocol) {
super(String.format("Unknown TransportProtocol: %1$s",
transportProtocol));
}
}