edu.vt.middleware.crypt.CryptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-crypt Show documentation
Show all versions of vt-crypt Show documentation
Library for performing common cryptographic operations
/*
$Id$
Copyright (C) 2007-2011 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision$
Updated: $Date$
*/
package edu.vt.middleware.crypt;
/**
* CryptException
encapsulates the many exceptions that can
* occur when working with the crypt libs.
*
* @author Middleware Services
* @version $Revision: 3 $
*/
public final class CryptException extends Exception
{
/** CryptException.java. */
private static final long serialVersionUID = -1041478966786912109L;
/** This creates a new CryptException
.
*/
public CryptException() {}
/**
* This creates a new CryptException
with the supplied
* message.
*
* @param msg String
*/
public CryptException(final String msg)
{
super(msg);
}
/**
* This creates a new CryptException
with the supplied cause.
*
*
* @param cause Exception
*/
public CryptException(final Throwable cause)
{
super(cause);
}
/**
* This creates a new CryptException
with the supplied message
* and cause.
*
* @param msg String
* @param cause Throwable
*/
public CryptException(final String msg, final Throwable cause)
{
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy