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 super();
10 }
11
12 public InstantiationRuntimeException(final String message, final Throwable cause) {
13 super(message, cause);
14 }
15
16 public InstantiationRuntimeException(final String message) {
17 super(message);
18 }
19
20 public InstantiationRuntimeException(final Throwable cause) {
21 super(cause);
22 }
23
24 public InstantiationRuntimeException(final InstantiationException e, final Constructor<?> constructor) {
25
26 }
27 }