aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CRLException.java
blob: f079b8bebf72651e4a2e865abc3c04301836cd12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package java.security.cert;

import java.security.GeneralSecurityException;

public class CRLException extends GeneralSecurityException
{
    public CRLException()
    {
    }

    public CRLException(String msg)
    {
        super(msg);
    }
}