Added in API level 1

UnsupportedCallbackException

open class UnsupportedCallbackException : Exception
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ javax.security.auth.callback.UnsupportedCallbackException

Signals that a CallbackHandler does not recognize a particular Callback.

Summary

Public constructors

Constructs a UnsupportedCallbackException with no detail message.

Constructs a UnsupportedCallbackException with the specified detail message.

Public methods
open Callback!

Get the unrecognized Callback.

Public constructors

UnsupportedCallbackException

Added in API level 1
UnsupportedCallbackException(callback: Callback!)

Constructs a UnsupportedCallbackException with no detail message.

Parameters
callback Callback!: the unrecognized Callback.

UnsupportedCallbackException

Added in API level 1
UnsupportedCallbackException(
    callback: Callback!,
    msg: String!)

Constructs a UnsupportedCallbackException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters
callback Callback!: the unrecognized Callback.

msg String!: the detail message.

Public methods

getCallback

Added in API level 1
open fun getCallback(): Callback!

Get the unrecognized Callback.

Return
Callback! the unrecognized Callback.