Coverage Report - org.apache.myfaces.shared.util.ExceptionUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
ExceptionUtils
0%
0/23
0%
0/12
4
 
 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.shared.util;
 20  
 
 21  
 import java.lang.reflect.Method;
 22  
 import java.util.ArrayList;
 23  
 import java.util.List;
 24  
 
 25  
 /**
 26  
  * Various helpers to deal with exception
 27  
  */
 28  
 public final class ExceptionUtils
 29  
 {
 30  
     private ExceptionUtils()
 31  0
     {
 32  0
     }
 33  
 
 34  
     /**
 35  
      * <p>
 36  
      * returns a list of all throwables (including the one you passed in) wrapped by the given throwable.
 37  
      * In contrast to a simple call to <code>getClause()</code> on each throwable it will also check if 
 38  
      * the throwable class contain a method <code>getRootCause()</code> (e.g. ServletException or JspException)
 39  
      * and call it instead.
 40  
      * </p>
 41  
      * <p>
 42  
      * The first list element will your passed in exception, the last list element is the cause. 
 43  
      * </p>
 44  
      */
 45  
     public static List getExceptions(Throwable cause)
 46  
     {
 47  0
         List exceptions = new ArrayList(10);
 48  0
         exceptions.add(cause);
 49  
         
 50  
         do
 51  
         {
 52  
             Throwable nextCause;
 53  
             try
 54  
             {
 55  0
                 Method rootCause = cause.getClass().getMethod("getRootCause", new Class[]{});
 56  0
                 nextCause = (Throwable) rootCause.invoke(cause, new Object[]{});
 57  
             }
 58  0
             catch(Exception e)
 59  
             {
 60  0
                 nextCause = cause.getCause();
 61  0
             }
 62  0
             if (cause == nextCause)
 63  
             {
 64  0
                 break;
 65  
             }
 66  
             
 67  0
             if (nextCause != null)
 68  
             {
 69  0
                 exceptions.add(nextCause);
 70  
             }
 71  
             
 72  0
             cause = nextCause;
 73  
         }
 74  0
         while (cause != null);
 75  
         
 76  0
         return exceptions;
 77  
     }
 78  
 
 79  
     /**
 80  
      * Find a throwable message starting with the last element.<br />
 81  
      * Returns the first throwable message where <code>throwable.getMessage() != null</code> 
 82  
      */
 83  
     public static String getExceptionMessage(List throwables)
 84  
     {
 85  0
         if (throwables == null)
 86  
         {
 87  0
             return null;
 88  
         }
 89  
 
 90  0
         for (int i = throwables.size()-1; i>0; i--)
 91  
         {
 92  0
             Throwable t = (Throwable) throwables.get(i);
 93  0
             if (t.getMessage() != null)
 94  
             {
 95  0
                 return t.getMessage();
 96  
             }
 97  
         }
 98  
         
 99  0
         return null;
 100  
     }
 101  
 }