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

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

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