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

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

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