com.notronix.albacore.crypto.CryptoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AlbacoreDeed Show documentation
Show all versions of AlbacoreDeed Show documentation
A collection of human readable utility methods.
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