This project has retired. For details please refer to its Attic page.
NotAvailableFeatureException xref
View Javadoc

1   /*
2    * $Id: NotAvailableFeatureException.java 819641 2009-09-28 16:56:14Z 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.factory;
23  
24  import org.apache.tiles.TilesException;
25  
26  /***
27   * Exception that indicates that a feature could not be used since it is not
28   * available.
29   *
30   * @version $Rev: 819641 $ $Date: 2009-09-28 18:56:14 +0200 (lun, 28 set 2009) $
31   * @since 2.1.4
32   */
33  public class NotAvailableFeatureException extends TilesException {
34  
35      /***
36       * Constructor.
37       *
38       * @since 2.1.4
39       */
40      public NotAvailableFeatureException() {
41      }
42  
43      /***
44       * Constructor.
45       *
46       * @param message The detail message.
47       * @since 2.1.4
48       */
49      public NotAvailableFeatureException(String message) {
50          super(message);
51      }
52  
53      /***
54       * Constructor.
55       *
56       * @param e The cause to be wrapped.
57       * @since 2.1.4
58       */
59      public NotAvailableFeatureException(Throwable e) {
60          super(e);
61      }
62  
63      /***
64       * Constructor.
65       *
66       * @param message The detail message.
67       * @param e The cause to be wrapped.
68       * @since 2.1.4
69       */
70      public NotAvailableFeatureException(String message, Throwable e) {
71          super(message, e);
72      }
73  }