Package com.yahoo.jdisc.handler
Class BindingNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.yahoo.jdisc.handler.BindingNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public final class BindingNotFoundException extends java.lang.RuntimeException
This exception is used to signal that no binding was found for theURI
of a givenRequest
. An instance of this class will be thrown by theRequest.connect(ResponseHandler)
method when the currentBindingSet
has not binding that matches the corresponding Request's URI.- Author:
- Simon Thoresen Hult
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindingNotFoundException(java.net.URI uri)
Constructs a new instance of this class with a detail message that contains theURI
that has no binding.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URI
uri()
Returns theURI
that has no binding.
-