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
public class ArquillianProxyException extends RuntimeException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArquillianProxyException()ArquillianProxyException(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)ArquillianProxyException(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 Detail
-
ArquillianProxyException
public ArquillianProxyException()
-
ArquillianProxyException
public ArquillianProxyException(String message)
-
ArquillianProxyException
public ArquillianProxyException(Throwable cause)
-
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
-
-