1 package com.lexicalscope.fluentreflection;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 public class ClassNotFoundRuntimeException extends ReflectionRuntimeException {
21 private static final long serialVersionUID = -5339808693443391503L;
22
23 public ClassNotFoundRuntimeException() {
24 super();
25 }
26
27 public ClassNotFoundRuntimeException(final String message, final Throwable cause) {
28 super(message, cause);
29 }
30
31 public ClassNotFoundRuntimeException(final String message) {
32 super(message);
33 }
34
35 public ClassNotFoundRuntimeException(final Throwable cause) {
36 super(cause);
37 }
38 }