IllegalConstruction.java

package calculator;

/**
 * Exception that will be used when an incorrectly constructed arithmetic expression is encountered.
 */
public class IllegalConstruction extends Exception {

    /**
     * Default constructor.
     */
    public IllegalConstruction() {
        super();
    }
}