|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.lang.IllegalArgumentException
public class IllegalArgumentException
Thrown when a method is passed an illegal or inappropriate argument. For
example:
wait(-1);
Constructor Summary | |
---|---|
IllegalArgumentException()
Create an exception without a message. |
|
IllegalArgumentException(String s)
Create an exception with a message. |
|
IllegalArgumentException(String message,
Throwable cause)
Constructs a IllegalArgumentException using
the specified error message, which should give further details
as to the reason for this exception. |
|
IllegalArgumentException(Throwable cause)
Constructs a IllegalArgumentException using
the specified cause Throwable , which may be used
to provide additional history, with regards to the root of the
problem. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
getCause, getLocalizedMessage, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public IllegalArgumentException()
public IllegalArgumentException(String s)
s
- the messagepublic IllegalArgumentException(String message, Throwable cause)
Constructs a IllegalArgumentException
using
the specified error message, which should give further details
as to the reason for this exception. The specified cause
Throwable
may be used to provide additional history,
with regards to the root of the problem. It is perfectly valid
for this to be null, if the cause of the problem is unknown.
Note: the detail message from the cause is not automatically incorporated into the resulting detail message of this exception.
message
- the detail message, which should give the reason for
this exception being thrown.cause
- the cause of this exception, or null if the cause
is unknown.public IllegalArgumentException(Throwable cause)
Constructs a IllegalArgumentException
using
the specified cause Throwable
, which may be used
to provide additional history, with regards to the root of the
problem. It is perfectly valid for this to be null, if the
cause of the problem is unknown.
The detail message is automatically constructed from the detail message of the supplied causal exception. If the cause is null, then the detail message will also be null. Otherwise, the detail message of this exception will be that of the causal exception. This makes this constructor very useful for simply wrapping another exception.
cause
- the cause of this exception, or null if the cause
is unknown.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |