1 /*
2 * $Id$
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.servlet.context;
23
24 import org.apache.tiles.TilesException;
25
26 /**
27 * Exception that indicates that a resource could not be used because it is not
28 * in a servlet environment.
29 *
30 * @version $Rev$ $Date$
31 * @since 2.2.0
32 */
33 public class NotAServletEnvironmentException extends TilesException {
34
35 /**
36 * Constructor.
37 *
38 * @since 2.2.0
39 */
40 public NotAServletEnvironmentException() {
41 }
42
43 /**
44 * Constructor.
45 *
46 * @param message The detail message.
47 * @since 2.2.0
48 */
49 public NotAServletEnvironmentException(String message) {
50 super(message);
51 }
52
53 /**
54 * Constructor.
55 *
56 * @param e The exception to be wrapped.
57 * @since 2.2.0
58 */
59 public NotAServletEnvironmentException(Exception e) {
60 super(e);
61 }
62
63 /**
64 * Constructor.
65 *
66 * @param message The detail message.
67 * @param e The exception to be wrapped.
68 * @since 2.2.0
69 */
70 public NotAServletEnvironmentException(String message, Exception e) {
71 super(message, e);
72 }
73
74 }