Constructors Summary |
---|
public IllegalArgumentException()Constructs a new {@code IllegalArgumentException} that includes the
current stack trace.
super();
|
public IllegalArgumentException(String detailMessage)Constructs a new {@code IllegalArgumentException} with the current stack
trace and the specified detail message.
super(detailMessage);
|
public IllegalArgumentException(String message, Throwable cause)Constructs a new {@code IllegalArgumentException} with the current stack
trace, the specified detail message and the specified cause.
super(message, cause);
|
public IllegalArgumentException(Throwable cause)Constructs a new {@code IllegalArgumentException} with the current stack
trace and the specified cause.
super((cause == null ? null : cause.toString()), cause);
|