Home | History | Annotate | Download | only in crypto
      1 
      2 package ch.ethz.ssh2.crypto;
      3 
      4 /*
      5  * Copyright (c) 2002-2010 David Kocher. All rights reserved.
      6  *
      7  * http://cyberduck.ch/
      8  *
      9  * This program is free software; you can redistribute it and/or modify
     10  * it under the terms of the GNU General Public License as published by
     11  * the Free Software Foundation; either version 2 of the License, or
     12  * (at your option) any later version.
     13  *
     14  * This program is distributed in the hope that it will be useful,
     15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     17  * GNU General Public License for more details.
     18  *
     19  * Bug fixes, suggestions and comments should be sent to:
     20  * dkocher (at) cyberduck.ch
     21  */
     22 
     23 import java.io.IOException;
     24 
     25 /**
     26  * @version $Id: PEMDecryptException.java 5865 2010-03-27 03:28:11Z dkocher $
     27  */
     28 public class PEMDecryptException extends IOException
     29 {
     30 	/**
     31 	 *
     32 	 */
     33 	private static final long serialVersionUID = 1L;
     34 
     35 	public PEMDecryptException(String message)
     36 	{
     37 		super(message);
     38 	}
     39 }
     40