View Javadoc

1   
2   package edu.iris.Fissures.model;
3   
4   /***
5    * IncompatibleUnit.java
6    * Signifies that two units are not convertable to one another. So any 
7    * values associated with these units cannot be compared, added, or subtracted.
8    *
9    *
10   * Created: Fri Oct  1 14:43:19 1999
11   *
12   * @author Philip Crotwell
13   * @version
14   */
15  
16  public class IncompatibleUnit extends Exception {
17      
18      public IncompatibleUnit() {
19          
20      }
21          
22      public IncompatibleUnit(String s) {
23          super(s);
24      }
25      
26  } // IncompatibleUnit