} 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
}
// 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