---
title: "Class IllegalArgumentException"
---

`package java.lang`

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

## 설명

**Direct Known Subclasses:**
- `IllegalThreadStateException`, `NumberFormatException`

**extends RuntimeException:**

함수 매개변수 값에 적절하지 않은 값이 할당되면 발생하는 
 exception 클래스.

## 생성자 요약

- IllegalArgumentException () IllegalArgumentException을 생성한다.
- IllegalArgumentException ( String s) IllegalArgumentException을 생성한다.

## 생성자 상세

### IllegalArgumentException

```java
public IllegalArgumentException()
```

- IllegalArgumentException을 생성한다.

### IllegalArgumentException

```java
public IllegalArgumentException(String s)
```

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

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

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