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.freemarker;
23
24 import org.apache.tiles.TilesException;
25
26 /***
27 * Exception connected to the usage of FreeMarker and Tiles.
28 *
29 * @version $Rev: 765386 $ $Date: 2009-04-15 23:56:54 +0200 (mer, 15 apr 2009) $
30 * @since 2.2.0
31 */
32 public class FreeMarkerTilesException extends TilesException {
33
34 /***
35 * Constructor.
36 *
37 * @since 2.2.0
38 */
39 public FreeMarkerTilesException() {
40
41 }
42
43 /***
44 * Constructor.
45 *
46 * @param message The message of the exception.
47 * @since 2.2.0
48 */
49 public FreeMarkerTilesException(String message) {
50 super(message);
51 }
52
53 /***
54 * Constructor.
55 *
56 * @param e The cause of the exception.
57 * @since 2.2.0
58 */
59 public FreeMarkerTilesException(Exception e) {
60 super(e);
61 }
62
63 /***
64 * Constructor.
65 *
66 * @param message The message of the exception.
67 * @param e The cause of the exception.
68 * @since 2.2.0
69 */
70 public FreeMarkerTilesException(String message, Exception e) {
71 super(message, e);
72 }
73 }