From: Roland Haeder Date: Wed, 12 Aug 2015 09:40:23 +0000 (+0200) Subject: Let it throw an unchecked exception, if the implementation wants this X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=48870845e460dd4b1f2b4b489bf6a78d41910d8f;p=jcore.git Let it throw an unchecked exception, if the implementation wants this Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index 68e74ab..d73ab2a 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -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);