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

jodd.http.HttpException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
// Copyright (c) 2003-2013, Jodd Team (jodd.org). All Rights Reserved.

package jodd.http;

import jodd.exception.UncheckedException;

/**
 * HTTP exception.
 */
public class HttpException extends UncheckedException {

	public HttpException(Throwable t) {
		super(t);
	}

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

	public HttpException(String message, Throwable t) {
		super(message, t);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy