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

com.webpieces.http2parser.api.dto.error.ConnectionException Maven / Gradle / Ivy

package com.webpieces.http2parser.api.dto.error;

public class ConnectionException extends Http2Exception {

	private static final long serialVersionUID = 1L;

	public ConnectionException(CancelReasonCode reason, String logId, int streamId, String msg) {
		super(reason, logId, streamId, msg);
	}

	public ConnectionException(CancelReasonCode reason, String logId, int streamId, String msg, Throwable e) {
		super(reason, logId, streamId, msg, e);
	}

	public ConnectionException(CancelReasonCode reason, int streamId, String msg) {
		super(reason, streamId, msg);
	}
	
	@Override
	public ErrorType getErrorType() {
		return ErrorType.CONNECTION;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy