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

org.bouncycastle.tls.crypto.TlsCryptoException Maven / Gradle / Ivy

package org.bouncycastle.tls.crypto;

import java.io.IOException;


/**
 * Basic exception class for crypto services to pass back a cause.
 */
public class TlsCryptoException
    extends IOException
{
    private final Throwable cause;

    public TlsCryptoException(String msg, Throwable cause)
    {
        super(msg);
        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy