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

bouncycastle.util.encoders.EncoderException Maven / Gradle / Ivy

The newest version!
package bouncycastle.util.encoders;

public class EncoderException
    extends IllegalStateException
{
	private static final long serialVersionUID = -201942987450889072L;

	private Throwable cause;

    EncoderException(String msg, Throwable cause)
    {
        super(msg);

        this.cause = cause;
    }

    public Throwable getCause()
    {
        return cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy