ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/uk/org/iscream/cms/conient/datacomponents/DataFormatException.java
Revision: 1.5
Committed: Thu Mar 15 01:05:46 2001 UTC (23 years, 2 months ago) by ajm
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.4: +3 -3 lines
Log Message:
The whole bally lot now is under uk.org.iscream ;p

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.org.iscream.conient.datacomponents;
3
4 //---IMPORTS---
5
6 /**
7 * Indicates a problem with the format of Data.
8 *
9 * If an object that extends DataComponent has a problem
10 * converting and displaying data, it throws this.
11 *
12 * @author $Author: ajm4 $
13 * @version $Id: DataFormatException.java,v 1.4 2001/01/24 03:11:14 ajm4 Exp $
14 */
15 public class DataFormatException extends Exception {
16
17 //---FINAL ATTRIBUTES---
18
19 /**
20 * The current CVS revision of this class
21 */
22 public final String REVISION = "$Revision: 1.4 $";
23
24 //---STATIC METHODS---
25
26 //---CONSTRUCTORS---
27
28 /**
29 * Takes a string containing a message detailing
30 * specifics about the exception.
31 *
32 * @param message the exception specifics
33 */
34 public DataFormatException(String message){
35 super(message);
36 }
37
38 //---PUBLIC METHODS---
39
40 //---PRIVATE METHODS---
41
42 //---ACCESSOR/MUTATOR METHODS---
43
44 //---ATTRIBUTES---
45
46 //---STATIC ATTRIBUTES---
47
48 }