Class BindingSetNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public final class BindingSetNotFoundException
    extends java.lang.RuntimeException
    This exception is used to signal that a named BindingSet was not found. An instance of this class will be thrown by the CurrentContainer.newReference(URI) method when a BindingSet with the specified name does not exist.
    Author:
    Simon Thoresen Hult
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BindingSetNotFoundException​(java.lang.String bindingSet)
      Constructs a new instance of this class with a detail message that contains the name of the BindingSet that was not found.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String bindingSet()
      Returns the name of the BindingSet that was not found.
      • 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

      • BindingSetNotFoundException

        public BindingSetNotFoundException​(java.lang.String bindingSet)
        Constructs a new instance of this class with a detail message that contains the name of the BindingSet that was not found.
        Parameters:
        bindingSet - The name of the BindingSet that was not found.
    • Method Detail

      • bindingSet

        public java.lang.String bindingSet()
        Returns the name of the BindingSet that was not found.
        Returns:
        The name of the BindingSet.