From: Roland Haeder Date: Sat, 5 Sep 2015 10:12:03 +0000 (+0200) Subject: Added check on zero X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=669c4f6d43f6739d9d122d4f10f80daf7388db09;p=pizzaservice-swing.git Added check on zero Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index 62790de..d87bf40 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -236,6 +236,9 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } else if (null == categoryId) { // "title" not set throw new IllegalArgumentException("product category id is not set."); //NOI18N + } else if (categoryId == 0) { + // "title" not set + throw new IllegalArgumentException("product category id is zero."); //NOI18N } else if (null == available) { // "title" not set throw new IllegalArgumentException("product availability not set."); //NOI18N @@ -292,10 +295,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } // Declare category - Category category; - - // Get Category instance from product over the frontend - category = this.categoryFrontend.getCategory(product); + Category category = this.categoryFrontend.getCategory(product); // Debug message this.getLogger().debug(MessageFormat.format("categoryId={0}", category)); //NOI18N