CryptoException.java :  » Remote » connectoid » net » propero » rdp » crypto » Android Open Source

Android Open Source » Remote » connectoid 
connectoid » net » propero » rdp » crypto » CryptoException.java
package net.propero.rdp.crypto;

/**
 * This class is for any unexpected exception in the crypto library.
 * <p>
 * <b>Copyright</b> &copy; 1997
 * <a href="http://www.systemics.com/">Systemics Ltd</a> on behalf of the
 * <a href="http://www.systemics.com/docs/cryptix/">Cryptix Development Team</a>.
 * <br>All rights reserved.
 * <p>
 * <b>$Revision: 1.6 $</b>
 * @author  David Hopwood
 * @since   Cryptix 2.2.2
 */
public class CryptoException
extends Exception
{
    public CryptoException() { super(); }
    /** @param reason  the reason why the exception was thrown. */
    public CryptoException(String reason) { super(reason); }       
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.