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.6
Committed: Tue May 29 17:41:32 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.5: +3 -3 lines
Log Message:
The last of the central monitoring system packages to be changed to the newer
structure. It has changed from;

uk.org.iscream.conient.*

to;

uk.org.iscream.cms.conient.*

This is in keeping with the new style of packaging.

File Contents

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2 tdb 1.6 package uk.org.iscream.cms.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 tdb 1.6 * @version $Id: DataFormatException.java,v 1.5 2001/03/15 01:05:46 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 tdb 1.6 public final String REVISION = "$Revision: 1.5 $";
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     }