java.lang
Class ArithmeticException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.ArithmeticException

public class ArithmeticException
extends RuntimeException

Thrown when a math error has occured, such as trying to divide an integer by zero. For example:

 int i = 0;
 int j = 2 / i;
 


Constructor Summary
ArithmeticException()
          Create an exception without a message.
ArithmeticException(String s)
          Create an exception with a message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
getCause, getLocalizedMessage, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ArithmeticException

public ArithmeticException()
Create an exception without a message.


ArithmeticException

public ArithmeticException(String s)
Create an exception with a message.

Parameters:
s - the message