]> git.mxchange.org Git - jcore.git/commitdiff
Let it throw an unchecked exception, if the implementation wants this
authorRoland Haeder <roland@mxchange.org>
Wed, 12 Aug 2015 09:40:23 +0000 (11:40 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 12 Aug 2015 09:40:23 +0000 (11:40 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/BaseFrameworkSystem.java

index 68e74ab643a5f36ecad5c2938f21c80af974da53..d73ab2a78d36deb7eab9d2f00ef8d4ac6b213d0b 100644 (file)
@@ -263,8 +263,9 @@ public class BaseFrameworkSystem implements FrameworkInterface {
         * Aborts program with given exception
         *
         * @param throwable Any type of Throwable
+        * @throws java.lang.RuntimeException Any thrown runtime exception
         */
-       protected void abortProgramWithException (final Throwable throwable) {
+       protected void abortProgramWithException (final Throwable throwable) throws RuntimeException {
                // Log exception ...
                this.getLogger().catching(throwable);