/**
* TLS-Attacker - A Modular Penetration Testing Framework for TLS
*
* Copyright 2014-2016 Ruhr University Bochum / Hackmanit GmbH
*
* Licensed under Apache License 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
package de.rub.nds.tlsattacker.tls.crypto.ec;
/**
*
* @author Juraj Somorovsky - juraj.somorovsky@rub.de
*/
public class DivisionException extends Exception {
private int round;
public DivisionException(String message) {
super(message);
}
public DivisionException(String message, int i) {
super(message + " Error happend in round " + i);
round = i;
}
public int getRound() {
return round;
}
}