UnsupportedCallbackExceptionpublic class UnsupportedCallbackException extends Exception Signals that a CallbackHandler does not
recognize a particular Callback . |
Fields Summary |
---|
private static final long | serialVersionUID | private Callback | callback |
Constructors Summary |
---|
public UnsupportedCallbackException(Callback callback)Constructs a UnsupportedCallbackException
with no detail message.
super();
this.callback = callback;
| public UnsupportedCallbackException(Callback callback, String msg)Constructs a UnsupportedCallbackException with the specified detail
message. A detail message is a String that describes this particular
exception.
super(msg);
this.callback = callback;
|
|