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

com.webpieces.http2parser.api.ParseException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.webpieces.http2parser.api;

public class ParseException extends RuntimeException {

    private static final long serialVersionUID = -2704718008204232741L;

    public ParseException() {
        super();
    }

    public ParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

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

    public ParseException(String message) {
        super(message);
    }

    public ParseException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy