public class JdapiException
extends java.lang.RuntimeException
Since most errors thrown by the API are of class JdapiException, users must rely on the message to get any details about the error. Users could subclass this exception to increase the differnt types of exceptions that are thrown. This class currently has two subclasses:
JdapiIllegalStateException
-thrown
when calling methods on invalid forms typesJdapiUnsupportedOperationException
-thrown
by forms objects that do not support a called operation Constructor and Description |
---|
JdapiException()
Creates a new JdapiException with a null message.
|
JdapiException(java.lang.String message)
Constructor taking message as an argument.
|
JdapiException(java.lang.Throwable t)
Constructor taking another throwable as an argument.
|
public JdapiException()
public JdapiException(java.lang.String message)
message
- Message describing the exception.public JdapiException(java.lang.Throwable t)
t
- Throwable object.