1 package com.lexicalscope.fluentreflection; 2 3 public class ReflectionRuntimeException extends RuntimeException { 4 private static final long serialVersionUID = -4053496996719723657L; 5 6 public ReflectionRuntimeException() { 7 super(); 8 } 9 10 public ReflectionRuntimeException(final String message, final Throwable cause) { 11 super(message, cause); 12 } 13 14 public ReflectionRuntimeException(final String message) { 15 super(message); 16 } 17 18 public ReflectionRuntimeException(final Throwable cause) { 19 super(cause); 20 } 21 }