org.apache.commons.httpclient.HttpContentTooLargeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-httpclient Show documentation
Show all versions of commons-httpclient Show documentation
An OSGi bundle for commons-httpclient ${project.version}
The newest version!
package org.apache.commons.httpclient;
/**
* Signals that the response content was larger than anticipated.
*
* @author Ortwin Gl?ck
*/
public class HttpContentTooLargeException extends HttpException {
private int maxlen;
public HttpContentTooLargeException(String message, int maxlen) {
super(message);
this.maxlen = maxlen;
}
/**
* @return the maximum anticipated content length in bytes.
*/
public int getMaxLength() {
return maxlen;
}
}