Class IllegalArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
- Direct Known Subclasses:
CSSThemeCompiler.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)
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an IllegalArgumentException with no detail message.Constructs an IllegalArgumentException with the specified detail message.IllegalArgumentException(String s, Throwable cause) Constructs an IllegalArgumentException with the specified detail message and cause.Constructs an IllegalArgumentException with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalArgumentException
public IllegalArgumentException()Constructs an IllegalArgumentException with no detail message. -
IllegalArgumentException
Constructs an IllegalArgumentException with the specified detail message. s - the detail message. -
IllegalArgumentException
-
IllegalArgumentException
Constructs an IllegalArgumentException with the specified cause. cause - the cause.
-