1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="null" lang="null">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>HttpContentTooLargeException xref</title>
<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../apidocs/org/apache/commons/httpclient/HttpContentTooLargeException.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <strong>package</strong> org.apache.commons.httpclient;
<a name="2" href="#2">2</a>
<a name="3" href="#3">3</a> <em>/**</em>
<a name="4" href="#4">4</a> <em> * Signals that the response content was larger than anticipated. </em>
<a name="5" href="#5">5</a> <em> * </em>
<a name="6" href="#6">6</a> <em> * @author Ortwin Gl?ck</em>
<a name="7" href="#7">7</a> <em> */</em>
<a name="8" href="#8">8</a> <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/commons/httpclient/HttpContentTooLargeException.html">HttpContentTooLargeException</a> <strong>extends</strong> <a href="../../../../org/apache/commons/httpclient/HttpException.html">HttpException</a> {
<a name="9" href="#9">9</a> <strong>private</strong> <strong>int</strong> maxlen;
<a name="10" href="#10">10</a>
<a name="11" href="#11">11</a> <strong>public</strong> <a href="../../../../org/apache/commons/httpclient/HttpContentTooLargeException.html">HttpContentTooLargeException</a>(String message, <strong>int</strong> maxlen) {
<a name="12" href="#12">12</a> <strong>super</strong>(message);
<a name="13" href="#13">13</a> <strong>this</strong>.maxlen = maxlen;
<a name="14" href="#14">14</a> }
<a name="15" href="#15">15</a>
<a name="16" href="#16">16</a> <em>/**</em>
<a name="17" href="#17">17</a> <em> * @return the maximum anticipated content length in bytes.</em>
<a name="18" href="#18">18</a> <em> */</em>
<a name="19" href="#19">19</a> <strong>public</strong> <strong>int</strong> getMaxLength() {
<a name="20" href="#20">20</a> <strong>return</strong> maxlen;
<a name="21" href="#21">21</a> }
<a name="22" href="#22">22</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|