Advertisement
dawciobiel

MyNoEnoughCashOnAccountException

Apr 15th, 2020
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1.  
  2. public class MyNoEnoughCashOnAccountException extends Exception {
  3.  
  4.     private static final long serialVersionUID = 1L;
  5.  
  6.     public MyNoEnoughCashOnAccountException() {
  7.         super();
  8.     }
  9.  
  10.     public MyNoEnoughCashOnAccountException(String arg0) {
  11.         super(arg0);
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement