]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Added more thrown exceptions
authorRoland Haeder <roland@mxchange.org>
Fri, 14 Aug 2015 19:45:54 +0000 (21:45 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 14 Aug 2015 19:45:54 +0000 (21:45 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index 68cf72205a75c4fb0a2d837c214d008012210c96..c59185fe6d0cbc8c14518bafa00f61dfdef1075e 100644 (file)
@@ -545,7 +545,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                try {
                        // Ask frontend for a list of products
                        return this.productFrontend.getAvailableProducts();
-               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException ex) {
+               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
                        throw new ServletException(ex);
                }
        }
@@ -560,7 +560,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                try {
                        // Ask frontend for a list of products
                        return this.productFrontend.getAllProducts();
-               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException ex) {
+               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
                        throw new ServletException(ex);
                }
        }
@@ -575,7 +575,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                try {
                        // Ask frontend for a list of categories
                        return this.categoryFrontend.getCategories();
-               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException ex) {
+               } catch (final IOException | BadTokenException | SQLException | CorruptedDatabaseFileException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
                        throw new ServletException(ex);
                }
        }
@@ -997,7 +997,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                this.getLogger().trace(MessageFormat.format("session={0},key={1} - CALLED!", session, key)); //NOI18N
 
                // Init value
-               Object value = null;
+               Object value;
 
                // Get it synchronized from session
                synchronized (session) {
@@ -1093,7 +1093,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
         * @param title Title of category to check
         * @return Whether it has been found
         */
-       private boolean isCategoryTitleUsed (final String title) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException {
+       private boolean isCategoryTitleUsed (final String title) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
                // Delegate to frontend
                return this.categoryFrontend.isCategoryTitleUsed(title);
        }
@@ -1103,7 +1103,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
         * @param title Product title to check
         * @return Whether the product title has already been used
         */
-       private boolean isProductTitleUsed (final String title) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException {
+       private boolean isProductTitleUsed (final String title) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
                // Delegate to frontend
                return this.productFrontend.isProductTitleUsed(title);
        }
@@ -1261,7 +1261,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                                // Title already used
                                throw new CategoryTitleAlreadyUsedException(request);
                        }
-               } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException ex) {
+               } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
                        throw new ServletException(ex);
                }
 
@@ -1355,7 +1355,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                                // Title already used
                                throw new ProductTitleAlreadyUsedException(request);
                        }
-               } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException ex) {
+               } catch (final IOException | SQLException | BadTokenException | CorruptedDatabaseFileException | NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
                        throw new ServletException(ex);
                }