---
title: "Class ArithmeticException"
---

`package java.lang`

```text
java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.lang.ArithmeticException
```

## 설명

**extends RuntimeException:**

0으로 나누기와 같은 수칙 연산 시 올바르게 대처할 수 없는 
 문제 발생 시 발생되는 Exception 클래스.

## 생성자 요약

- ArithmeticException () ArithmeticException객체를 생성한다.
- ArithmeticException ( String s) ArithmeticException객체를 생성한다.

## 생성자 상세

### ArithmeticException

```java
public ArithmeticException()
```

- ArithmeticException객체를 생성한다.

### ArithmeticException

```java
public ArithmeticException(String s)
```

**Parameters:**
- `s` - ArithmeticException의 세부 메세지.

***AromaSoft Corp. Proprietary and Confidential***

*(C)opyright 2003 AromaSoft Corp. All right reserved. 
Contact : [contact@aromasoft.com](mailto:contact@aromasoft.com)*
