Package waba.lang

This package contains some classes from the original java.lang, and those classes contains only a subset of the methods.

See:
          Description

Class Summary
ArithmeticException Thrown when an arithmetic problem occurs (maybe a division by zero).
ArrayIndexOutOfBoundsException Thrown when you try to access an array index that is < 0 or >= array.length.
Class This class must never be used in desktop, otherwise you'll get strange errors!
ClassCastException Thrown when a class is casted to an incompatible class.
ClassNotFoundException Thrown when a class is not found.
Error General Error class.
Exception General exception class.
IllegalAccessException Thrown when you try to load a private class using Class.newInstance.
IndexOutOfBoundsException Thrown when an index is used outside of the defined bounds.
InstantiationException Thrown when a abstract class or an interface is trying to be Class.newInstance'd.
Math Helper class containing useful mathematical functions and constants.
NoClassDefFoundError Thrown when a class definition was not found.
NullPointerException Thrown when a null object is being used.
Object Object is the base class for all objects.
OutOfMemoryError Thrown when no more memory exists to continue the execution of the last requested operation.
RuntimeException General runtime exception class
String String is an array of characters.
StringBuffer This Class is a growable buffer for characters.
Throwable Base class of all Exceptions.
 

Package waba.lang Description

This package contains some classes from the original java.lang, and those classes contains only a subset of the methods. When creating your programs, be sure to know which functions are implemented by reading the javadocs of the classes in this package, otherwise your program will crash. There's no need to import waba.lang.*;.