01: package org.geotiff.epsg;
02:
03: /**
04: * Represents the Exception when an invalid coordinate
05: * system code is entered.
06: *
07: * @author: Niles D. Ritter
08: */
09:
10: public class InvalidCodeException extends Exception {
11:
12: public InvalidCodeException() {
13: }
14:
15: public InvalidCodeException(String msg) {
16: super(msg);
17: }
18: }
|