Class JdapiUnsupportedOperationException

All Implemented Interfaces:
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:
  • Constructor Details

    • JdapiUnsupportedOperationException

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

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

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