kashdkjaf
[rmh3093.git] / lab3 / RCS / TankFarmException.java,v
blob3c06896c4d5baaa2964b75f8b98537e9ea9331e8
1 head    1.1;
2 access;
3 symbols;
4 locks
5         rmh3093:1.1; strict;
6 comment @# @;
9 1.1
10 date    2008.04.02.02.51.27;    author rmh3093; state Exp;
11 branches;
12 next    ;
15 desc
16 @initial commit
20 1.1
21 log
22 @Initial revision
24 text
25 @/*
26  * TankFarmException.java
27  *
28  * Version:
29  *     $Id$
30  *
31  * Revisions:
32  *     $Log$
33  */
35 /**
36  * This class defines the object to be thrown by a TankFarm object when it 
37  * detects a constructor error.
38  * 
39  * @@author rmh3093
40  */
41 public class TankFarmException extends Exception {
43         /**
44          * Constructor for the TankFarmException class. TankFarm objects will 
45          * generate exceptions of this object type when a negative tank count is 
46          * detected.
47          * 
48          * @@param message The string object used to construct the superclass 
49          * Exception object
50          */
51         public TankFarmException(String message) {
52                 super(message);
53         }
54