aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/dvcs/DVCSParsingException.java
blob: e1452576849da0fec6cc159c41d0ffde3bb5b746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.spongycastle.dvcs;

/**
 * DVCS parsing exception - thrown when failed to parse DVCS message.
 */
public class DVCSParsingException
    extends DVCSException
{
    private static final long serialVersionUID = -7895880961377691266L;

    public DVCSParsingException(String message)
    {
        super(message);
    }

    public DVCSParsingException(String message, Throwable cause)
    {
        super(message, cause);
    }
}