01: /*
02: * IllegleParametersException.java
03: *
04: * Created on June 3, 2002, 1:55 PM
05: */
06: /*
07: * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI
08: * for visualizing and manipulating spatial features with geometry and attributes.
09: *
10: * Copyright (C) 2003 Vivid Solutions
11: *
12: * This program is free software; you can redistribute it and/or
13: * modify it under the terms of the GNU General Public License
14: * as published by the Free Software Foundation; either version 2
15: * of the License, or (at your option) any later version.
16: *
17: * This program is distributed in the hope that it will be useful,
18: * but WITHOUT ANY WARRANTY; without even the implied warranty of
19: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20: * GNU General Public License for more details.
21: *
22: * You should have received a copy of the GNU General Public License
23: * along with this program; if not, write to the Free Software
24: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25: *
26: * For more information, contact:
27: *
28: * Vivid Solutions
29: * Suite #1A
30: * 2328 Government Street
31: * Victoria BC V8T 5G5
32: * Canada
33: *
34: * (250)385-6040
35: * www.vividsolutions.com
36: */
37:
38: package com.vividsolutions.jump.io;
39:
40: /**
41: * Simple class to report missing/bad {@link DriverProperties} problems.
42: */
43: public class IllegalParametersException extends java.lang.Exception {
44: /**
45: * Creates new <code>IllegleParametersException</code> without detail message.
46: */
47: public IllegalParametersException() {
48: }
49:
50: /**
51: * Constructs an <code>IllegleParametersException</code> with the specified detail message.
52: * @param msg the detail message.
53: */
54: public IllegalParametersException(String msg) {
55: super(msg);
56: }
57: }
|