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