EldiraSesto

ShoppimgCartNotFound

Jun 9th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package cashregister;
  2.  
  3. public class ShoppingCartNotFoundException extends Exception {
  4.  
  5.     /**
  6.      *
  7.      */
  8.     private static final long serialVersionUID = 1L;
  9.  
  10.     public ShoppingCartNotFoundException(Long cashregisterid, Long shoppingcartid) {
  11.     super("A Shopping Cart with casheregister id " + cashregisterid + " and scopping card id  " + shoppingcartid + " can not be found" );
  12.     }
  13.  
  14.    
  15. }
Add Comment
Please, Sign In to add comment