blob: 55be032fdf59da7356af7bdefe5e8b00fc28a046 [file] [log] [blame]
/*******************************************************************************
* 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.Serializable;
import java.io.Writer;
public class Throwable implements Serializable {
private static final long serialVersionUID = -282116690407747101L;
public Throwable(String s) {
}
public Throwable() {
}
public void printStackTrace() {
}
public void printStackTrace(Writer w) {
}
public void printStackTrace(PrintStream w) {
}
public String getMessage() {
return null;
}
}