Class NotExecutableException

  • All Implemented Interfaces:
    Serializable

    public class NotExecutableException
    extends Exception
    This exception indicates that a test case cannot be executed due to missing data or if the repository does not have the ability to perform the test. E.g. a feature is optional.

    A test method may simply declare this exception in its signature and throw this exception at any point in the method.

    The TCK framework will take care that a test method throwing this exception is not considered to be in error, but that the repository is unable to execute this test.

    See Also:
    Serialized Form
    • Constructor Detail

      • NotExecutableException

        public NotExecutableException()
        Creates a NotExecutableException without a message.
      • NotExecutableException

        public NotExecutableException​(String message)
        Creates a NotExecutableException with a detailed message.
        Parameters:
        message - describes why the test case cannot be executed.