ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/InvalidXMLException.java
Revision: 1.2
Committed: Wed Mar 14 23:25:29 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.1: +3 -3 lines
Log Message:
The whole server package structure has been changed.
Old Package: uk.ac.ukc.iscream.*
New Package: uk.org.iscream.*

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.org.iscream.util;
3
4 //---IMPORTS---
5
6 /**
7 * This exception is thrown if XML cannot be parsed into
8 * an XML packet. It is a checked exception, although this
9 * could be changed later on.
10 *
11 * @author $Author: tdb1 $
12 * @version $Id: InvalidXMLException.java,v 1.1 2001/03/01 16:54:29 tdb1 Exp $
13 */
14 public class InvalidXMLException extends Exception {
15
16 //---FINAL ATTRIBUTES---
17
18 //---STATIC METHODS---
19
20 //---CONSTRUCTORS---
21
22 /**
23 * Takes a string containing a message detailing
24 * specifics about the exception.
25 *
26 * @param message the exception specifics
27 */
28 public InvalidXMLException(String message){
29 super(message);
30 }
31
32 //---PUBLIC METHODS---
33
34 //---PRIVATE METHODS---
35
36 //---ACCESSOR/MUTATOR METHODS---
37
38 //---ATTRIBUTES---
39
40 //---STATIC ATTRIBUTES---
41
42 }