
com.ohadr.crypto.exception.CryptoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-crypto Show documentation
Show all versions of common-crypto Show documentation
parent POM for authentication projects.
The newest version!
package com.ohadr.crypto.exception;
public class CryptoException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public CryptoException()
{
super();
}
public CryptoException(String message, Throwable cause)
{
super(message, cause);
}
public CryptoException(String message)
{
super(message);
}
public CryptoException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy