All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.security.DigestException.scala Maven / Gradle / Ivy

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