Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package cashregister;
- public class ShoppingCartNotFoundException extends Exception {
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- public ShoppingCartNotFoundException(Long cashregisterid, Long shoppingcartid) {
- super("A Shopping Cart with casheregister id " + cashregisterid + " and scopping card id " + shoppingcartid + " can not be found" );
- }
- }
Add Comment
Please, Sign In to add comment