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

org.webpieces.httpparser.api.ParseException Maven / Gradle / Ivy

package org.webpieces.httpparser.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