private static final long serialVersionUID = 1L;
public double div(double arg1, double arg2) throws DivByZero {
if (arg2 == 0) {
DivByZero exception = new DivByZero();
exception.arguments = new Arguments(arg1, arg2);
exception.info = "Error occured during div: div by zero";
throw exception;
} else {
return arg1 / arg2;