public class IllegalArgumentException
- Object
- Throwable
- Exception
- RuntimeException
- IllegalArgumentException
Known subtypesCSSThemeCompiler.CSSSyntaxException, IllegalThreadStateException, NumberFormatException
Thrown to indicate that a method has been passed an illegal or inappropriate argument.
Since: JDK1.0, CLDC 1.0 See Also:Thread.setPriority(int)
Constructors
public IllegalArgumentException() | Constructs an IllegalArgumentException with no detail message. |
public IllegalArgumentException(String s) | Constructs an IllegalArgumentException with the specified detail message. |
public IllegalArgumentException(String s, Throwable cause) | Constructs an IllegalArgumentException with the specified detail message and cause. |
public IllegalArgumentException(Throwable cause) | Constructs an IllegalArgumentException with the specified cause. |
Inherited methods
Constructor details
IllegalArgumentException
public IllegalArgumentException()Constructs an IllegalArgumentException with no detail message.
IllegalArgumentException
public IllegalArgumentException(String s)Constructs an IllegalArgumentException with the specified detail message.
s - the detail message.
IllegalArgumentException
public IllegalArgumentException(String s, Throwable cause)Constructs an IllegalArgumentException with the specified detail message and cause.
s - the detail message.
cause - the cause.
IllegalArgumentException
public IllegalArgumentException(Throwable cause)Constructs an IllegalArgumentException with the specified cause.
cause - the cause.