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.1
Committed: Mon Jan 22 03:03:39 2001 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Log Message:
re-worked to be better OO... ;-)
added support for V1.0 client protocol
all still very messy....

File Contents

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2    
3     //---IMPORTS---
4    
5     /**
6     *
7     *
8     * @author $Author: tdb1 $
9     * @version $Id: InvalidQueueException.java,v 1.2 2001/01/18 01:55:10 tdb1 Exp $
10     */
11     public class DataFormatException extends Exception {
12    
13     //---FINAL ATTRIBUTES---
14    
15     //---STATIC METHODS---
16    
17     //---CONSTRUCTORS---
18    
19     /**
20     * Takes a string containing a message detailing
21     * specifics about the exception.
22     *
23     * @param message the exception specifics
24     */
25     public DataFormatException(String message){
26     super(message);
27     }
28    
29     //---PUBLIC METHODS---
30    
31     //---PRIVATE METHODS---
32    
33     //---ACCESSOR/MUTATOR METHODS---
34    
35     //---ATTRIBUTES---
36    
37     //---STATIC ATTRIBUTES---
38    
39     }