From 48870845e460dd4b1f2b4b489bf6a78d41910d8f Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 12 Aug 2015 11:40:23 +0200 Subject: [PATCH] =?utf8?q?Let=20it=20throw=20an=20unchecked=20exception,?= =?utf8?q?=20if=20the=20implementation=20wants=20this=20Signed-off-by:Rola?= =?utf8?q?nd=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.39.5