View Javadoc

1   package edu.iris.Fissures.model;
2   
3   /***
4    * IncompatibleFormat.java
5    *
6    *
7    * Created: Tue Oct 26 11:05:35 1999
8    *
9    * @author Philip Crotwell
10   * @version
11   */
12  
13  public class IncompatibleFormat extends Exception {
14      
15      public IncompatibleFormat() {
16          
17      }
18  
19      public IncompatibleFormat(String s) {
20          super(s);
21      }
22      
23  } // IncompatibleFormat