KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > PostValueToLargeException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util;
11
12 /**
13  * This exception will occur if the getPostParameterByte method is used
14  * While the arraylength is larger than the maximum size allowed
15  *
16  * @application SCAN. To port this, use of HttpPost by i.e. taglibs should be replaced with the jakarta FileUpload code.
17  * @rename PostValueTooLargeException
18  * @move org.mmbase.servlet
19  * @author vpro
20  * @version $Id: PostValueToLargeException.java,v 1.8 2004/09/30 14:07:11 pierre Exp $
21  */

22 public class PostValueToLargeException extends RuntimeException JavaDoc {
23
24     //javadoc is inherited
25
public PostValueToLargeException() {
26         super();
27     }
28
29     //javadoc is inherited
30
public PostValueToLargeException(String JavaDoc message) {
31         super(message);
32     }
33
34     //javadoc is inherited
35
public PostValueToLargeException(Throwable JavaDoc cause) {
36         super(cause);
37     }
38
39     //javadoc is inherited
40
public PostValueToLargeException(String JavaDoc message, Throwable JavaDoc cause) {
41         super(message, cause);
42     }
43
44 }
45
Popular Tags