aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/PGPDataValidationException.java
blob: 1b6fb10b7ffc91627d5b9a1711b60353753a3616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.spongycastle.openpgp;

/**
 * Thrown if the iv at the start of a data stream indicates the wrong key
 * is being used.
 */
public class PGPDataValidationException 
    extends PGPException
{
    /**
     * @param message
     */
    public PGPDataValidationException(String message)
    {
        super(message);
    }
}