Class BindingException

  • All Implemented Interfaces:
    java.io.Serializable

    public class BindingException
    extends java.lang.RuntimeException
    An unchecked exception indicating a binding problem.
    Since:
    1.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BindingException​(java.lang.String message)
      Creates a new BindingException with the given message.
      BindingException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new BindingException with the given message and cause.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void printStackTrace​(java.io.PrintStream err)  
      void printStackTrace​(java.io.PrintWriter err)  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

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

      • BindingException

        public BindingException​(java.lang.String message)
        Creates a new BindingException with the given message.
        Parameters:
        message - the exceptions message
      • BindingException

        public BindingException​(java.lang.String message,
                                java.lang.Throwable cause)
        Creates a new BindingException with the given message and cause.
        Parameters:
        message - the exceptions message
        cause - the cause for this exception; might be null
    • Method Detail

      • printStackTrace

        public void printStackTrace​(java.io.PrintStream err)
        Overrides:
        printStackTrace in class java.lang.Throwable
      • printStackTrace

        public void printStackTrace​(java.io.PrintWriter err)
        Overrides:
        printStackTrace in class java.lang.Throwable