Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin18/src/java/lang/ReflectiveOperationException.java')
-rw-r--r--JCL/converterJclMin18/src/java/lang/ReflectiveOperationException.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/JCL/converterJclMin18/src/java/lang/ReflectiveOperationException.java b/JCL/converterJclMin18/src/java/lang/ReflectiveOperationException.java
new file mode 100644
index 000000000..0860c6790
--- /dev/null
+++ b/JCL/converterJclMin18/src/java/lang/ReflectiveOperationException.java
@@ -0,0 +1,26 @@
+
+package java.lang;
+
+public class ReflectiveOperationException extends Exception {
+ static final long serialVersionUID = 123456789L;
+
+ public ReflectiveOperationException() {
+ super();
+ }
+
+ public ReflectiveOperationException(String message) {
+ super(message);
+ }
+
+ public ReflectiveOperationException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public ReflectiveOperationException(Throwable cause) {
+ super(cause);
+ }
+
+ public java.lang.Throwable getCause() {
+ return getCause();
+ }
+}

Back to the top