1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.apache.tiles.velocity;
23
24 import org.apache.tiles.TilesException;
25
26 /***
27 * Exception connected to the usage of Velocity and Tiles.
28 *
29 * @version $Rev: 765774 $ $Date: 2009-04-16 23:43:00 +0200 (gio, 16 apr 2009) $
30 * @since 2.2.0
31 */
32 public class TilesVelocityException extends TilesException {
33
34 /***
35 * Constructor.
36 *
37 * @since 2.2.0
38 */
39 public TilesVelocityException() {
40 }
41
42 /***
43 * Constructor.
44 *
45 * @param message The message of the exception.
46 * @since 2.2.0
47 */
48 public TilesVelocityException(String message) {
49 super(message);
50 }
51
52 /***
53 * Constructor.
54 *
55 * @param e The cause of the exception.
56 * @since 2.2.0
57 */
58 public TilesVelocityException(Exception e) {
59 super(e);
60 }
61
62 /***
63 * Constructor.
64 *
65 * @param message The message of the exception.
66 * @param e The cause of the exception.
67 * @since 2.2.0
68 */
69 public TilesVelocityException(String message, Exception e) {
70 super(message, e);
71 }
72 }