package scotty.crypto;
/**
* Exception for crypto package
*
* @author Tobias Zeising tobias.zeising@aditu.de http://www.aditu.de
*/
public class CryptoException extends Exception {
public CryptoException() {
super();
// TODO Auto-generated constructor stub
}
public CryptoException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
public CryptoException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public CryptoException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}