Class ProxyException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    ProxyEvaluationException

    public class ProxyException
    extends java.lang.Exception
    Indicates an exception in the proxy framework.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ProxyException()
      Constructor
      ProxyException​(java.lang.String message)
      Constructor
      ProxyException​(java.lang.String message, java.lang.Throwable cause)
      Constructor
      ProxyException​(java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ProxyException

        public ProxyException()
        Constructor
      • ProxyException

        public ProxyException​(java.lang.String message,
                              java.lang.Throwable cause)
        Constructor
        Parameters:
        message - the error message
        cause - the causing exception for chaining exceptions.
      • ProxyException

        public ProxyException​(java.lang.String message)
        Constructor
        Parameters:
        message - the error message
      • ProxyException

        public ProxyException​(java.lang.Throwable cause)
        Constructor
        Parameters:
        cause - the causing exception for chaining exceptions.