public class javax.security.auth.callback
UnsupportedCallbackException


Show All Login
Java SE 6
  
Extends: Throwable > Exception
Details
Signals that a CallbackHandler does not recognize a particular Callback.
version1.12, 11/17/05

Constructors
public UnsupportedCallbackException(Callback callback) Details
Constructs a UnsupportedCallbackException with no detail message.

callbackthe unrecognized Callback.

public UnsupportedCallbackException(Callback callback, String msg) Details
Constructs a UnsupportedCallbackException with the specified detail message. A detail message is a String that describes this particular exception.

callbackthe unrecognized Callback.

msgthe detail message.


Properties
public Callback getCallback() Details
Get the unrecognized Callback.

returnthe unrecognized Callback.