View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.view.facelets.tag.jstl.core;
20  
21  import java.io.IOException;
22  
23  import javax.el.ELException;
24  import javax.faces.FacesException;
25  import javax.faces.component.UIComponent;
26  import javax.faces.view.facelets.FaceletContext;
27  import javax.faces.view.facelets.FaceletException;
28  import javax.faces.view.facelets.TagAttribute;
29  import javax.faces.view.facelets.TagConfig;
30  import javax.faces.view.facelets.TagHandler;
31  
32  import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFFaceletAttribute;
33  import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFFaceletTag;
34  
35  /**
36   * Catches any Throwable that occurs in its body and optionally 
37   * exposes it.
38   * 
39   * @author Jacob Hookom
40   * @version $Id$
41   */
42  @JSFFaceletTag(name="c:catch")
43  public final class CatchHandler extends TagHandler
44  {
45  
46      /**
47       * Name of the exported scoped variable for the
48       * exception thrown from a nested action. The type of the
49       * scoped variable is the type of the exception thrown.
50       */
51      @JSFFaceletAttribute(className="java.lang.String")
52      private final TagAttribute var;
53  
54      /**
55       * @param config
56       */
57      public CatchHandler(TagConfig config)
58      {
59          super(config);
60          this.var = this.getAttribute("var");
61      }
62  
63      public void apply(FaceletContext ctx, UIComponent parent) throws IOException, FacesException, FaceletException,
64              ELException
65      {
66          try
67          {
68              this.nextHandler.apply(ctx, parent);
69          }
70          catch (Exception e)
71          {
72              if (this.var != null)
73              {
74                  ctx.setAttribute(this.var.getValue(ctx), e);
75              }
76          }
77      }
78  
79  }