com.webpieces.http2engine.impl.shared.data.NoTransitionStreamError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http2-engine Show documentation
Show all versions of http2-engine Show documentation
A re-usable asynchronous HTTP/2 parser
package com.webpieces.http2engine.impl.shared.data;
import java.util.concurrent.CompletionException;
public class NoTransitionStreamError extends CompletionException {
private static final long serialVersionUID = 1L;
public NoTransitionStreamError() {
}
public NoTransitionStreamError(String message) {
super(message);
}
public NoTransitionStreamError(Throwable cause) {
super(cause);
}
public NoTransitionStreamError(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy