X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Fjava%2Forg%2Fmxchange%2Fpizzaapplication%2Fbeans%2Fcontroller%2FPizzaWebBean.java;h=e28a03d033a4807f0f07eaad55089705bd8de036;hb=371159a07fe48df4152dc25b6d2f5e0fb65d7439;hp=91deebe423f47a53cf2e01babdc46186502a6df5;hpb=84d19ee2d6daa0391fa4069de20da543b37d9750;p=pizzaservice-war.git diff --git a/src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java b/src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java index 91deebe4..e28a03d0 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java @@ -22,8 +22,8 @@ import java.util.Iterator; import javax.faces.FacesException; import org.mxchange.jshop.beans.FrameworkBean; import org.mxchange.jshop.category.Category; -import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException; -import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException; +import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException; +import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException; import org.mxchange.jshop.product.Product; /** @@ -124,7 +124,7 @@ public interface PizzaWebBean extends FrameworkBean { * * @param category Category instance * @throws java.rmi.RemoteException If something unexpected happened - * @throws org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException If the given title is already used + * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If the given title is already used */ public void doAdminAddCategory (final Category category) throws RemoteException, CategoryTitleAlreadyUsedException; @@ -133,7 +133,7 @@ public interface PizzaWebBean extends FrameworkBean { * * @param product Product instance * @throws java.rmi.RemoteException If something unexpected happened - * @throws org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException If the given product title is already used + * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the given product title is already used */ public void doAdminAddProduct (final Product product) throws RemoteException, ProductTitleAlreadyUsedException;