View Javadoc
1   package calculator;
2   
3   /**
4    * Exception that will be used when an incorrectly constructed arithmetic expression is encountered.
5    */
6   public class IllegalConstruction extends Exception {
7   
8       /**
9        * Default constructor.
10       */
11      public IllegalConstruction() {
12          super();
13      }
14  }