bouncycastle.util.MemoableResetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodlouse Show documentation
Show all versions of woodlouse Show documentation
Lightweight crypto toolkit for Android and Java 6+
The newest version!
package bouncycastle.util;
/**
* Exception to be thrown on a failure to reset an object implementing Memoable.
*
* The exception extends ClassCastException to enable users to have a single handling case,
* only introducing specific handling of this one if required.
*
*/
public class MemoableResetException
extends ClassCastException
{
private static final long serialVersionUID = -2973252128736751768L;
/**
* Basic Constructor.
*
* @param msg message to be associated with this exception.
*/
public MemoableResetException(String msg)
{
super(msg);
}
}