public class IllegalArgumentException

  1. Object
  2. Throwable
  3. Exception
  4. RuntimeException
  5. 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.