Team LiB
Previous Section Next Section

ArithmeticExceptionjava.lang

Java 1.0serializable unchecked

A RuntimeException that signals an exceptional arithmetic condition, such as integer division by zero.

Figure 10-3. java.lang.ArithmeticException


public class ArithmeticException extends RuntimeException {
// Public Constructors
     public ArithmeticException( );  
     public ArithmeticException(String s);  
}

    Team LiB
    Previous Section Next Section