org.cryptacular.CryptoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
/* See LICENSE for licensing and NOTICE for copyright. */
package org.cryptacular;
/**
* Runtime error describing a generic cryptographic problem (e.g. bad padding, unsupported cipher).
*
* @author Middleware Services
*/
public class CryptoException extends RuntimeException
{
/**
* Creates a new instance with the given error message.
*
* @param message Error message.
*/
public CryptoException(final String message)
{
super(message);
}
/**
* Creates a new instance with the given error message and cause.
*
* @param message Error message.
* @param cause Error cause.
*/
public CryptoException(final String message, final Throwable cause)
{
super(message, cause);
}
}