org.apache.qpid.junit.concurrency
Class PossibleDeadlockException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.qpid.junit.concurrency.PossibleDeadlockException
- All Implemented Interfaces:
- Serializable
public class PossibleDeadlockException
- extends RuntimeException
PossibleDeadlockException is used to signal that two test threads being executed by a ThreadTestCoordinator
may be in a state of deadlock because they are mutually blocking each other or one is waiting on the other and the
other has been blocked elsewhere for longer than a specified timeout.
CRC Card
Responsibilities | Collaborations
|
---|
Signal a possible state of deadlock between coordinated test threads.
|
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
PossibleDeadlockException
public PossibleDeadlockException(String message)
- Create a new possible deadlock execption.
- Parameters:
message
- The exception message.
Licensed to the Apache Software Foundation