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

CMSSignerDigestMismatchException.java « cms « spongycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2bf8a2648b2c44b516b25c629a29e5501e568db (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.spongycastle.cms;

public class CMSSignerDigestMismatchException
    extends CMSException
{
    public CMSSignerDigestMismatchException(
        String msg)
    {
        super(msg);
    }
}