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

com.notronix.albacore.crypto.CryptoException Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package com.notronix.albacore.crypto;

public class CryptoException extends Exception
{
    public CryptoException(String message)
    {
        super(message);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy