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.2
Committed: Mon Jan 22 12:32:14 2001 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Changes since 1.1: +10 -2 lines
Log Message:
All tidy now, fully javadoc comments

File Contents

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