Package oracle.forms.jdapi
Class JdapiUnsupportedOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
oracle.forms.jdapi.JdapiException
oracle.forms.jdapi.JdapiUnsupportedOperationException
- All Implemented Interfaces:
Serializable
This exception is thrown by forms objects which do not support a called method. For
example, some forms objects, such as
JdapiMetaProperty
,
do not support the JdapiIterator.remove
method.
If remove()
is called on a JdapiMetaProperty
, this exception will
be thrown.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newJdapiUnsupportedOperationException
with a null message.JdapiUnsupportedOperationException
(String message) Constructor taking message as an argument.Constructor taking another throwable as an argument. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JdapiUnsupportedOperationException
public JdapiUnsupportedOperationException()Creates a newJdapiUnsupportedOperationException
with a null message. -
JdapiUnsupportedOperationException
Constructor taking message as an argument.- Parameters:
message
- Message describing the exception.
-
JdapiUnsupportedOperationException
Constructor taking another throwable as an argument.- Parameters:
t
- Throwable object.
-