1
2 package edu.iris.Fissures.model;
3
4 /***
5 * UnsupportedFormat.java signals that a format is not recognized. This
6 * could be a an encoding of a date into a string.
7 *
8 *
9 * Created: Wed Sep 1 09:56:18 1999
10 *
11 * @author Philip Crotwell
12 * @version
13 */
14
15 public class UnsupportedFormat extends RuntimeException {
16
17 public UnsupportedFormat() {
18 super();
19 }
20
21 public UnsupportedFormat(String s) {
22 super(s);
23 }
24
25 } // UnsupportedFormat