Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2020-09-16 03:59:22 +0000
committerJay Arthanareeswaran2020-09-16 03:59:22 +0000
commit27b53ca171a19db4794ec310f4e339e876ea495f (patch)
tree3b12fd95b0afb9a5401d836d115751d13588c5c0 /JCL/converterJclMin/src/java/lang/Throwable.java
parenta8b03f929def2f6a9f479a198856e34e6cd4af34 (diff)
parent0a27063a3e6012ba850fd756f98be50be0375dc3 (diff)
downloadeclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.gz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.tar.xz
eclipse.jdt.core-27b53ca171a19db4794ec310f4e339e876ea495f.zip
Merge remote-tracking branch 'origin/BETA_JAVA15'
Diffstat (limited to 'JCL/converterJclMin/src/java/lang/Throwable.java')
-rw-r--r--JCL/converterJclMin/src/java/lang/Throwable.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/JCL/converterJclMin/src/java/lang/Throwable.java b/JCL/converterJclMin/src/java/lang/Throwable.java
new file mode 100644
index 0000000000..42ebfd75a1
--- /dev/null
+++ b/JCL/converterJclMin/src/java/lang/Throwable.java
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package java.lang;
+
+import java.io.PrintStream;
+import java.io.Writer;
+
+public class Throwable {
+ public Throwable(String s) {
+ }
+ public Throwable() {
+ }
+
+ public void printStackTrace() {
+ }
+
+ public void printStackTrace(Writer w) {
+ }
+
+ public void printStackTrace(PrintStream w) {
+ }
+ public String getMessage() {
+ return null;
+ }
+}

Back to the top