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

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

The newest version!
package org.bouncycastle.openpgp;

public class PGPRuntimeOperationException
    extends RuntimeException
{
    private final Throwable cause;

    public PGPRuntimeOperationException(String message, Throwable cause)
    {
        super(message);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy