java.security.DigestException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-native-crypto_native0.4_2.11 Show documentation
Show all versions of scala-native-crypto_native0.4_2.11 Show documentation
Scala Native java.security implementation based on OpenSSL
The newest version!
package java.security
class DigestException(message: String, cause: Throwable)
extends GeneralSecurityException(message, cause) {
def this(message: String) = this(message, null)
def this(cause: Throwable) = this(null, cause)
def this() = this(null, null)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy