FileDocCategorySizeDatePackage
UnsupportedCallbackException.javaAPI DocJava SE 5 API1529Fri Aug 26 14:57:48 BST 2005javax.security.auth.callback

UnsupportedCallbackException

public class UnsupportedCallbackException extends Exception
Signals that a CallbackHandler does not recognize a particular Callback.
version
1.11, 12/19/03

Fields Summary
private static final long
serialVersionUID
private Callback
callback
Constructors Summary
public UnsupportedCallbackException(Callback callback)
Constructs a UnsupportedCallbackException with no detail message.

param
callback the unrecognized Callback.


                      
       
	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.

param
callback the unrecognized Callback.

param
msg the detail message.

	super(msg);
	this.callback = callback;
    
Methods Summary
public javax.security.auth.callback.CallbackgetCallback()
Get the unrecognized Callback.

return
the unrecognized Callback.

	return callback;