/* * CSP Project * Authors: * Jay Bernardo * Matt Rancourt * * File: Variable.java * * Contains the Variable class. * * * TODO: Update description */ class Variable extends AbstractVariable{ public Variable(String name, int value, boolean positive) throws InvalidVariableValueException{ super(name, value, positive); } }