1 /*
2 * $Id: FreeMarkerTilesException.java 765386 2009-04-15 21:56:54Z apetrelli $
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
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 // TODO Auto-generated constructor stub
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 }