edu.rice.cs.cunit.concJUnit
Class NoJoinError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by edu.rice.cs.cunit.concJUnit.MultithreadedTestError
              extended by edu.rice.cs.cunit.concJUnit.CreationContextError
                  extended by edu.rice.cs.cunit.concJUnit.NoJoinError
All Implemented Interfaces:
Serializable

public class NoJoinError
extends CreationContextError

Class representing a conceptual error of a multithreaded test: the thread did not end before the test was over.

See Also:
Serialized Form

Constructor Summary
NoJoinError(String message)
          Constructs a new "no join" test error with the specified detail message.
NoJoinError(String message, StackTraceElement[] stes)
          Constructs a new "no join" test error with the specified detail message and creation context.
NoJoinError(String message, String cc)
          Constructs a new "no join" test error with the specified detail message and creation context.
 
Method Summary
 
Methods inherited from class edu.rice.cs.cunit.concJUnit.CreationContextError
getCreationContext, parseCreationContextString
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoJoinError

public NoJoinError(String message)
Constructs a new "no join" test error with the specified detail message.

Parameters:
message - the detail message

NoJoinError

public NoJoinError(String message,
                   StackTraceElement[] stes)
Constructs a new "no join" test error with the specified detail message and creation context.

Parameters:
message - the detail message
stes - array of stack trace elements, describing where the thread was started

NoJoinError

public NoJoinError(String message,
                   String cc)
Constructs a new "no join" test error with the specified detail message and creation context.

Parameters:
message - the detail message
cc - string with creation context, describing where the thread was started