01: /*
02: * uDig - User Friendly Desktop Internet GIS client
03: * http://udig.refractions.net
04: * (C) 2004, Refractions Research Inc.
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: */
17: package net.refractions.udig.project.render;
18:
19: /**
20: * Indicates that an exception during Rendering has occurred.
21: *
22: * @author jeichar
23: * @since 0.6.0
24: */
25: public class RenderException extends Exception {
26:
27: /** <code>serialVersionUID</code> field */
28: private static final long serialVersionUID = 3762814883208902450L;
29:
30: /**
31: * Construct <code>RenderException</code>.
32: *
33: * @param msg comment about the exception
34: * @param t the exception that occurred
35: */
36: public RenderException(String msg, Throwable t) {
37: super (msg, t);
38: }
39:
40: /**
41: * Construct <code>RenderException</code>.
42: *
43: * @param msg comment about the exception
44: */
45: public RenderException(String msg) {
46: super (msg);
47: }
48:
49: /**
50: * Construct <code>RenderException</code>.
51: *
52: * @param msg comment about the exception
53: */
54: public RenderException() {
55: super ();
56: }
57:
58: /**
59: * Construct <code>RenderException</code>.
60: *
61: * @param t the exception that occurred
62: */
63: public RenderException(Throwable t) {
64: super(t);
65: }
66:
67: }
|