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:
java.io.Serializable

public class JdapiUnsupportedOperationException
extends JdapiException

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:
Serialized Form

Constructor Summary
JdapiUnsupportedOperationException()
          Creates a new JdapiUnsupportedOperationException with a null message.
JdapiUnsupportedOperationException(java.lang.String message)
          Constructor taking message as an argument.
JdapiUnsupportedOperationException(java.lang.Throwable t)
          Constructor taking another throwable as an argument.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JdapiUnsupportedOperationException

public JdapiUnsupportedOperationException()
Creates a new JdapiUnsupportedOperationException with a null message.

JdapiUnsupportedOperationException

public JdapiUnsupportedOperationException(java.lang.String message)
Constructor taking message as an argument.
Parameters:
message - Message describing the exception.

JdapiUnsupportedOperationException

public JdapiUnsupportedOperationException(java.lang.Throwable t)
Constructor taking another throwable as an argument.
Parameters:
Throwable - object.