Class java.lang.IllegalArgumentException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.IllegalArgumentException

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

public class IllegalArgumentException
extends RuntimeException
Thrown to indicate that a method has been passed an illegal or inappropriate argument.

Version:
1.13, 07/01/98
Author:
unascribed
Since:
JDK1.0
See Also:
setPriority(int)

Constructor Index

 o java.lang.IllegalArgumentException()
Constructs an IllegalArgumentException with no detail message.
 o java.lang.IllegalArgumentException(String)
Constructs an IllegalArgumentException with the specified detail message.

Constructors

 o IllegalArgumentException
public IllegalArgumentException()
Constructs an IllegalArgumentException with no detail message.

Since:
JDK1.0
 o IllegalArgumentException
public IllegalArgumentException(String s)
Constructs an IllegalArgumentException with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index