java.lang.Throwable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cldc-1.1-stub Show documentation
Show all versions of cldc-1.1-stub Show documentation
Stub of the Connected Limited Device Configuration v1.1
The newest version!
package java.lang;
/**
* @since CLDC 1.0
*/
public class Throwable {
public Throwable() {}
public Throwable(String s) {}
public String getMessage() {
return null;
}
public void printStackTrace() {}
public String toString() {
return null;
}
}