
com.jsuereth.pgp.exceptions.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bleep-plugin-pgp_2.13 Show documentation
Show all versions of bleep-plugin-pgp_2.13 Show documentation
A bleeping fast scala build tool!
package bleep.plugin.pgp
/** Base class for exceptions thrown in PGP library. */
trait PgpException extends Exception
/** Exception thrown when a key is not found in the keystore. */
case class KeyNotFoundException(id: Long) extends Exception("Could not find PGP key [%x]" format id) with PgpException
case class NotEncryptedMessageException(msg: String) extends Exception(msg) with PgpException
case class IntegrityException(msg: String) extends Exception(msg) with PgpException
© 2015 - 2025 Weber Informatics LLC | Privacy Policy