Class UnsupportedCallbackException

java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.security.auth.callback.UnsupportedCallbackException
All Implemented Interfaces:
Serializable

public class UnsupportedCallbackException
extends Exception
Thrown when a CallbackHandler does not support a particular Callback.
See Also:
Serialized Form
  • Constructor Details

    • UnsupportedCallbackException

      public UnsupportedCallbackException​(Callback callback)
      Creates a new exception instance and initializes it with just the unsupported Callback, but no error message.
      Parameters:
      callback - the Callback
    • UnsupportedCallbackException

      public UnsupportedCallbackException​(Callback callback, String message)
      Creates a new exception instance and initializes it with both the unsupported Callback and an error message.
      Parameters:
      callback - the Callback
      message - the error message
  • Method Details

    • getCallback

      public Callback getCallback()
      Returns the unsupported Callback that triggered this exception.
      Returns:
      the Callback