All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.openpgp.PGPSignatureException Maven / Gradle / Ivy

The newest version!
package org.bouncycastle.openpgp;

public class PGPSignatureException
    extends PGPException
{
    public PGPSignatureException(String message)
    {
        super(message);
    }

    public PGPSignatureException(String message, Exception cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy