All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.vt.middleware.crypt.CryptException Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
/*
  $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