1 package edu.iris.dmc.seedcodec;
2
3 import java.lang.Exception;
4
5
6
7 /***
8 * CodecException.java
9 *
10 *
11 * Created: Fri Nov 22 15:31:06 2002
12 *
13 * @author <a href="mailto:crotwell@Philip-Crotwells-Computer.local.">Philip Crotwell</a>
14 * @version
15 */
16
17 public class CodecException extends Exception {
18 public CodecException() {
19
20 }
21 public CodecException(String reason) {
22 super(reason);
23 }
24
25 }// CodecException