java.lang
Class Throwable

java.lang.Object
  |
  +--java.lang.Throwable
Direct Known Subclasses:
Error, Exception

public class Throwable
extends Object

Base class of all Exceptions.


Constructor Summary
Throwable()
           
Throwable(String msg)
           
 
Method Summary
 String getMessage()
           
 void printStackTrace()
          Prints the stack trace to the SuperWaba debug console.
 String toString()
          Returns the string representation of the object, that is full_class_name@internal_address_hex.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, wait, wait
 

Constructor Detail

Throwable

public Throwable()

Throwable

public Throwable(String msg)
Method Detail

getMessage

public String getMessage()

toString

public String toString()
Description copied from class: Object
Returns the string representation of the object, that is full_class_name@internal_address_hex. Note that, differently from JDK, the package separator is / instead of .
Overrides:
toString in class Object

printStackTrace

public void printStackTrace()
Prints the stack trace to the SuperWaba debug console.