]> git.mxchange.org Git - addressbook-swing.git/blobdiff - src/org/mxchange/addressbook/BaseAddressbookSystem.java
auto-reformatted most project files
[addressbook-swing.git] / src / org / mxchange / addressbook / BaseAddressbookSystem.java
index 6f4ec4ac64909598d09d2dfcb61a4b472db9c7a0..f0d1d9a38d2a41e68a0ba975ce6404c8a75a7951 100644 (file)
@@ -52,6 +52,19 @@ public abstract class BaseAddressbookSystem extends BaseFrameworkSystem {
                }
        }
 
+       /**
+        * Log exception and abort program.
+        * <p>
+        * @param throwable Throwable
+        */
+       protected void abortProgramWithException (final Throwable throwable) {
+               // Log exception
+               this.logException(throwable);
+               
+               // Abort here
+               System.exit(1);
+       }
+
        /**
         * Getter for logger instance
         * <p>
@@ -69,17 +82,4 @@ public abstract class BaseAddressbookSystem extends BaseFrameworkSystem {
        protected void logException (final Throwable exception) {
                throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
        }
-
-       /**
-        * Log exception and abort program.
-        * <p>
-        * @param throwable Throwable
-        */
-       protected void abortProgramWithException (final Throwable throwable) {
-               // Log exception
-               this.logException(throwable);
-
-               // Abort here
-               System.exit(1);
-       }
 }