com.sun.jersey.test.framework.spi.container
Class TestContainerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.sun.jersey.test.framework.spi.container.TestContainerException
All Implemented Interfaces:
Serializable

public class TestContainerException
extends RuntimeException

Thrown when a test container-specific error occurs.

Author:
Paul.Sandoz@Sun.COM
See Also:
Serialized Form

Constructor Summary
TestContainerException()
          Construct a new instance with no message.
TestContainerException(String message)
          Construct a new instance with a message.
TestContainerException(String message, Throwable cause)
          Construct a new instance with a message and a cause.
TestContainerException(Throwable cause)
          Construct a new instance with a cause.
 
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

TestContainerException

public TestContainerException()
Construct a new instance with no message.


TestContainerException

public TestContainerException(String message)
Construct a new instance with a message.

Parameters:
message - the message

TestContainerException

public TestContainerException(String message,
                              Throwable cause)
Construct a new instance with a message and a cause.

Parameters:
message - the message.
cause - the Throwable that caused the exception to be thrown.

TestContainerException

public TestContainerException(Throwable cause)
Construct a new instance with a cause.

Parameters:
cause - the Throwable that caused the exception to be thrown.


Copyright © 2013 Oracle Corporation. All Rights Reserved.