KickJava   Java API By Example, From Geeks To Geeks.

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


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 import javax.servlet.ServletException JavaDoc;
13
14
15 /**
16  * This exception gets thrown when a Cyclic Redundancy Check
17  * fails.
18  * @application SCAN
19  * @move org.mmbase.servlet
20  * @author vpro
21  * @version $Id: PageCRCException.java,v 1.4 2004/09/30 14:07:11 pierre Exp $
22  */

23 public class PageCRCException extends ServletException JavaDoc {
24
25     /**
26      * Create the exception
27      */

28     public PageCRCException (String JavaDoc s) {
29         super(s);
30     }
31 }
32
Popular Tags