Advertisement
tombenko

OperandsNotEnough.java

Jun 15th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.  
  2.  
  3. public class OperandsNotEnough extends Exception {
  4.     /*
  5.      * This is the exception dropped by the Calculator class when the
  6.      * operands are not enough for the operators.
  7.      * */
  8.     public OperandsNotEnough(){super();}
  9.     public OperandsNotEnough(String message){super(message);}
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement