1 24 package org.ofbiz.order.shoppingcart; 25 26 import org.ofbiz.base.util.GeneralException; 27 28 35 public class CartItemModifyException extends GeneralException { 36 37 public CartItemModifyException() { 38 super(); 39 } 40 41 public CartItemModifyException(String str) { 42 super(str); 43 } 44 45 public CartItemModifyException(Throwable nested) { 46 super(nested); 47 } 48 49 public CartItemModifyException(String str, Throwable nested) { 50 super(str, nested); 51 } 52 } 53 | Popular Tags |