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

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

public class PGPSignatureException
    extends PGPException
{
    public PGPSignatureException(String message)
    {
        super(message);
    }

    public PGPSignatureException(String message, Exception cause)
    {
        super(message, cause);
    }
}