public class

ArithmeticException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.ArithmeticException

Class Overview

Thrown when an exceptional arithmetic condition has occurred. For example, an integer "divide by zero" throws an instance of this class.

Summary

Public Constructors
ArithmeticException()
Constructs an ArithmeticException with no detail message.
ArithmeticException(String s)
Constructs an ArithmeticException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ArithmeticException ()

Constructs an ArithmeticException with no detail message.

public ArithmeticException (String s)

Constructs an ArithmeticException with the specified detail message.

Parameters
s the detail message.