aboutsummaryrefslogtreecommitdiff
path: root/gpg/skeybase/src/main/scala/com/github/jodersky/skeybase/VerificationException.scala
blob: 228c7c8f6c3172cdf48d3eba64d52efd13ce364a (plain) (blame)
1
2
3
4
5
6
7
8
package com.github.jodersky.skeybase

/** 
 * Thrown when the verification of a proof fails. This exception may only be thrown in case of an error
 * during verification (such as an invalid signature), NOT in related circumstances (such as an offline service
 * or missing resource).
 */
class VerificationException(message: String) extends RuntimeException(message)