1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.portals.applications.transform;
18
19
20 /***
21 * TransformException
22 *
23 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
24 * @version $Id: TransformException.java 516448 2007-03-09 16:25:47Z ate $
25 */
26 public class TransformException extends Exception
27 {
28 /***
29 * Constructs a new <code>TransformException</code> without specified detail
30 * message.
31 */
32 public TransformException()
33 {
34 }
35
36 /***
37 * Constructs a new <code>TransformException</code> with specified detail
38 * message.
39 *
40 * @param msg the error message.
41 */
42 public TransformException(String msg)
43 {
44 super(msg);
45 }
46
47 /***
48 * Constructs a new <code>TransformException</code> with specified nested
49 * <code>Throwable</code>.
50 *
51 * @param nested the exception or error that caused this exception
52 * to be thrown.
53 */
54 public TransformException(Throwable nested)
55 {
56 super(nested);
57 }
58
59 /***
60 * Constructs a new <code>TransformException</code> with specified detail
61 * message and nested <code>Throwable</code>.
62 *
63 * @param msg the error message.
64 * @param nested the exception or error that caused this exception
65 * to be thrown.
66 */
67 public TransformException(String msg, Throwable nested)
68 {
69 super(msg, nested);
70 }
71 }