
com.zsoltfabok.arithmetic.expression.evaluator.NotInDomainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arithmetic.expression.evaluator Show documentation
Show all versions of arithmetic.expression.evaluator Show documentation
A very simple arithmetic expression evaluator
The newest version!
package com.zsoltfabok.arithmetic.expression.evaluator;
public class NotInDomainException extends Exception
{
public NotInDomainException()
{
}
public NotInDomainException(String message)
{
super(message);
}
public NotInDomainException(double x)
{
value = x;
}
private double value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy