Added in API level 1
NoSuchProviderException
open class NoSuchProviderException : GeneralSecurityException
kotlin.Any | ||||
↳ | kotlin.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.security.GeneralSecurityException | |||
↳ | java.security.NoSuchProviderException |
This exception is thrown when a particular security provider is requested but is not available in the environment.
Summary
Public constructors | |
---|---|
Constructs a NoSuchProviderException with no detail message. |
|
NoSuchProviderException(msg: String!) Constructs a NoSuchProviderException with the specified detail message. |
Public constructors
NoSuchProviderException
Added in API level 1
NoSuchProviderException()
Constructs a NoSuchProviderException with no detail message. A detail message is a String that describes this particular exception.
NoSuchProviderException
Added in API level 1
NoSuchProviderException(msg: String!)
Constructs a NoSuchProviderException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters | |
---|---|
msg |
String!: the detail message. |