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

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2 ajm 1.5 package uk.org.iscream.conient.datacomponents;
3 ajm 1.1
4     //---IMPORTS---
5    
6     /**
7 ajm 1.2 * Indicates a problem with the format of Data.
8 ajm 1.1 *
9 ajm 1.2 * If an object that extends DataComponent has a problem
10     * converting and displaying data, it throws this.
11 ajm 1.1 *
12 ajm 1.2 * @author $Author: ajm4 $
13 ajm 1.5 * @version $Id: DataFormatException.java,v 1.4 2001/01/24 03:11:14 ajm4 Exp $
14 ajm 1.1 */
15     public class DataFormatException extends Exception {
16    
17     //---FINAL ATTRIBUTES---
18 ajm 1.2
19     /**
20     * The current CVS revision of this class
21     */
22 ajm 1.5 public final String REVISION = "$Revision: 1.4 $";
23 ajm 1.1
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     }