Package org.jboss.arquillian.test.spi
Class ArquillianProxyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jboss.arquillian.test.spi.ArquillianProxyException
- All Implemented Interfaces:
Serializable
Exception class used when a proxied exception cannot be created. This
exception type is is thrown instead and contains information about the
proxied class and a hint about why it could not be thrown.
- Author:
- Andy Gibson
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionArquillianProxyException(String message) ArquillianProxyException(String message, String exceptionClassName, String reason, Throwable cause) ArquillianProxyException constructor based on an underlying exception that cannot be recreated.ArquillianProxyException(String message, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArquillianProxyException
public ArquillianProxyException() -
ArquillianProxyException
-
ArquillianProxyException
-
ArquillianProxyException
-
ArquillianProxyException
public ArquillianProxyException(String message, String exceptionClassName, String reason, Throwable cause) ArquillianProxyException constructor based on an underlying exception that cannot be recreated.- Parameters:
message- Message from the proxied ExceptionexceptionClassName- Class name of the proxied class typereason- reason that the exception couldn't be re-createdcause- cause from the original exception
-