01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * Created on 22 October 2002, 15:29
17: */
18: package org.geotools.styling;
19:
20: /**
21: * An exception that can be thrown by the StyleFactory if it fails to create
22: * the implementation of the StyleFactory. $Id:
23: * StyleFactoryCreationException.java,v 1.1 2002/10/22 17:02:03 ianturton Exp
24: * $
25: *
26: * @author iant
27: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/main/src/main/java/org/geotools/styling/StyleFactoryCreationException.java $
28: */
29: public class StyleFactoryCreationException extends java.lang.Exception {
30: private static final long serialVersionUID = -1809128211848169317L;
31:
32: /**
33: * Creates a new instance of <code>StyleFactoryCreationException</code>
34: * without detail message.
35: */
36: public StyleFactoryCreationException() {
37: }
38:
39: /**
40: * Constructs an instance of <code>StyleFactoryCreationException</code>
41: * with the specified detail message.
42: *
43: * @param msg the detail message.
44: */
45: public StyleFactoryCreationException(String msg) {
46: super (msg);
47: }
48:
49: public StyleFactoryCreationException(Exception e) {
50: super (e);
51: }
52:
53: public StyleFactoryCreationException(String msg, Exception e) {
54: super(msg, e);
55: }
56: }
|