Coverage Report - com.lexicalscope.fluentreflection.ReflectionRuntimeException
 
Classes in this File Line Coverage Branch Coverage Complexity
ReflectionRuntimeException
50%
4/8
N/A
1
 
 1  
 package com.lexicalscope.fluentreflection;
 2  
 
 3  
 public class ReflectionRuntimeException extends RuntimeException {
 4  
     private static final long serialVersionUID = -4053496996719723657L;
 5  
 
 6  
     public ReflectionRuntimeException() {
 7  0
         super();
 8  0
     }
 9  
 
 10  
     public ReflectionRuntimeException(final String message, final Throwable cause) {
 11  8
         super(message, cause);
 12  8
     }
 13  
 
 14  
     public ReflectionRuntimeException(final String message) {
 15  24
         super(message);
 16  24
     }
 17  
 
 18  
     public ReflectionRuntimeException(final Throwable cause) {
 19  0
         super(cause);
 20  0
     }
 21  
 }