Class ProxyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.github.markusbernhardt.proxy.util.ProxyException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ProxyEvaluationException
public class ProxyException extends Exception
Indicates an exception in the proxy framework.- Author:
- Markus Bernhardt, Copyright 2016, Bernd Rosstauscher, Copyright 2009
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProxyException()ConstructorProxyException(String message)ConstructorProxyException(String message, Throwable cause)ConstructorProxyException(Throwable cause)Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ProxyException
public ProxyException()
Constructor
-
ProxyException
public ProxyException(String message, Throwable cause)
Constructor- Parameters:
message- the error messagecause- the causing exception for chaining exceptions.
-
ProxyException
public ProxyException(String message)
Constructor- Parameters:
message- the error message
-
ProxyException
public ProxyException(Throwable cause)
Constructor- Parameters:
cause- the causing exception for chaining exceptions.
-
-