Coverage Report - com.lexicalscope.fluentreflection.InstantiationRuntimeException
 
Classes in this File Line Coverage Branch Coverage Complexity
InstantiationRuntimeException
0%
0/10
N/A
1
 
 1  
 package com.lexicalscope.fluentreflection;
 2  
 
 3  
 import java.lang.reflect.Constructor;
 4  
 
 5  
 public class InstantiationRuntimeException extends ReflectionRuntimeException {
 6  
     private static final long serialVersionUID = 2839141085488904858L;
 7  
 
 8  
     public InstantiationRuntimeException() {
 9  0
         super();
 10  0
     }
 11  
 
 12  
     public InstantiationRuntimeException(final String message, final Throwable cause) {
 13  0
         super(message, cause);
 14  0
     }
 15  
 
 16  
     public InstantiationRuntimeException(final String message) {
 17  0
         super(message);
 18  0
     }
 19  
 
 20  
     public InstantiationRuntimeException(final Throwable cause) {
 21  0
         super(cause);
 22  0
     }
 23  
 
 24  0
     public InstantiationRuntimeException(final InstantiationException e, final Constructor<?> constructor) {
 25  
         // TODO Auto-generated constructor stub
 26  0
     }
 27  
 }