Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin13/src/java/lang/NullPointerException.java')
-rw-r--r--JCL/converterJclMin13/src/java/lang/NullPointerException.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/JCL/converterJclMin13/src/java/lang/NullPointerException.java b/JCL/converterJclMin13/src/java/lang/NullPointerException.java
new file mode 100644
index 0000000000..5e4ffa680d
--- /dev/null
+++ b/JCL/converterJclMin13/src/java/lang/NullPointerException.java
@@ -0,0 +1,11 @@
+package java.lang;
+public
+class NullPointerException extends RuntimeException {
+ public NullPointerException() {
+ super();
+ }
+
+ public NullPointerException(String s) {
+ super(s);
+ }
+} \ No newline at end of file

Back to the top