| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.sip.InvalidArgumentException
InvalidArgumentException | public class InvalidArgumentException extends Exception (Code) | | This exception class is thrown by an implementation when given an invalid
argument such as a invalid numerical value.
author: BEA Systems, NIST version: 1.2 |
Field Summary | |
protected Throwable | m_Cause The specialized cause that triggered this Exception. |
Method Summary | |
public Throwable | getCause() Returns the cause of this throwable or null if the cause is
nonexistent or unknown. |
m_Cause | protected Throwable m_Cause(Code) | | The specialized cause that triggered this Exception. This cause
informs an application of the underlying implementation problem that
triggered this Exception.
|
InvalidArgumentException | public InvalidArgumentException()(Code) | | Create an InvalidArgumentException with no detail message.
|
InvalidArgumentException | public InvalidArgumentException(String message)(Code) | | Create an InvalidArgumentException with a detail message.
Parameters: message - the detail message. |
InvalidArgumentException | public InvalidArgumentException(String message, Throwable cause)(Code) | | Constructs a new InvalidArgumentException with the
specified error message and specialized cause that triggered this error
condition.
Parameters: message - the detail of the error message Parameters: cause - the specialized cause that triggered this exception |
getCause | public Throwable getCause()(Code) | | Returns the cause of this throwable or null if the cause is
nonexistent or unknown. (The cause is the throwable that caused this
throwable to get thrown.) This implementation returns the cause that
was supplied via the constructor requiring a Throwable.
the cause of this throwable or null if the cause is nonexistent or unknown. |
|
|
|