Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PGPKeyValidationException.java « openpgp « spongycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63245c51965d5a9bc4a38f7654b5233e799284f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.spongycastle.openpgp;

/**
 * Thrown if the key checksum is invalid.
 */
public class PGPKeyValidationException 
    extends PGPException
{
    /**
     * @param message
     */
    public PGPKeyValidationException(String message)
    {
        super(message);
    }
}