Class java.lang.ArithmeticException
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.ArithmeticException
Object
|
+----Throwable
|
+----Exception
|
+----RuntimeException
|
+----java.lang.ArithmeticException
- public class ArithmeticException
- extends RuntimeException
Thrown when an exceptional arithmetic condition has occurred. For
example, an integer "divide by zero" throws an
instance of this class.
- Version:
- 1.15, 07/01/98
- Author:
- unascribed
- Since:
- JDK1.0
-
java.lang.ArithmeticException()
- Constructs an
ArithmeticException
with no detail
message.
-
java.lang.ArithmeticException(String)
- Constructs an
ArithmeticException
with the specified
detail message.
ArithmeticException
public ArithmeticException()
- Constructs an
ArithmeticException
with no detail
message.
- Since:
- JDK1.0
ArithmeticException
public ArithmeticException(String s)
- Constructs an
ArithmeticException
with the specified
detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index