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

org.bouncycastle.tls.exception.IllegalStateException Maven / Gradle / Ivy

There is a newer version: 1.78.1
Show newest version
package org.bouncycastle.tls.exception;

public class IllegalStateException
    extends java.lang.IllegalStateException
{
    final Throwable cause;

    public IllegalStateException(Throwable cause)
    {
        this.cause = cause;
    }

    public IllegalStateException(String message, Throwable cause)
    {
        super(message);
        this.cause = cause;
    }


    public IllegalStateException(String s)
    {
        super(s);
        this.cause = null;
    }

    public Throwable getCause()
    {
        return cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy