Package org.apache.jackrabbit.test
Class NotExecutableException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- 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
Constructors Constructor Description NotExecutableException()Creates aNotExecutableExceptionwithout a message.NotExecutableException(String message)Creates aNotExecutableExceptionwith a detailed message. 
- 
Method Summary
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
NotExecutableException
public NotExecutableException()
Creates aNotExecutableExceptionwithout a message. 
- 
NotExecutableException
public NotExecutableException(String message)
Creates aNotExecutableExceptionwith a detailed message.- Parameters:
 message- describes why the test case cannot be executed.
 
 - 
 
 -