CertificateStoreConfigException.java 870 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
package org.jivesoftware.openfire.keystore;

/**
 * A checked exception that indicates problems related to Certificate Store functionality.
 *
 * @author Guus der Kinderen, guus.der.kinderen@gmail.com
 */
public class CertificateStoreConfigException extends Exception
{
    public CertificateStoreConfigException()
    {
    }

    public CertificateStoreConfigException( String message )
    {
        super( message );
    }

    public CertificateStoreConfigException( String message, Throwable cause )
    {
        super( message, cause );
    }

    public CertificateStoreConfigException( Throwable cause )
    {
        super( cause );
    }

    public CertificateStoreConfigException( String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace )
    {
        super( message, cause, enableSuppression, writableStackTrace );
    }
}