org.apache.jackrabbit.test
Class NotExecutableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.jackrabbit.test.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 Summary
NotExecutableException()
          Creates a NotExecutableException without a message.
NotExecutableException(String message)
          Creates a NotExecutableException with a detailed message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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.


Copyright © 2004-2010 The Apache Software Foundation. All Rights Reserved.