Advertisement
tombenko

BraNotEnough.java

Jun 15th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class BraNotEnough extends Exception {
  2.     /*
  3.      * This exception is dropped by the Calculator class, when there
  4.      * is a pairless bracket.
  5.      * */
  6.     public BraNotEnough(){ super(); }
  7.     public BraNotEnough(String message){ super(message); };
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement