Coverage Report - joptsimple.internal.ReflectionException
 
Classes in this File Line Coverage Branch Coverage Complexity
ReflectionException
100%
2/2
N/A
1
 
 1  
 /*
 2  
  Copyright 2004-2008 Paul R. Holser, Jr.  All rights reserved.
 3  
  Licensed under the Academic Free License version 3.0
 4  
  */
 5  
 
 6  
 package joptsimple.internal;
 7  
 
 8  
 /**
 9  
  * <p>This unchecked exception wraps reflection-oriented exceptions.</p>
 10  
  *
 11  
  * @since 2.0
 12  
  * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a>
 13  
  * @version $Id: ReflectionException.java,v 1.1 2008/04/01 21:46:46 pholser Exp $
 14  
  */
 15  
 public class ReflectionException extends RuntimeException {
 16  
     private static final long serialVersionUID = -2L;
 17  
 
 18  
     ReflectionException( Throwable cause ) {
 19  20
         super( cause.toString() );
 20  20
     }
 21  
 }