/** * Program Name: Calculator.java * Author: Essam Fahmy * Date: August 8, 2022 * Purpose: This exception class is used when there is an empty operand */ public class EmptyOperandException extends Exception { EmptyOperandException(String value) { super("Empty operand detected! Unable to complete task."); } }