From 7232dd46e055f751ced548fb3608856d2daf9c5f Mon Sep 17 00:00:00 2001 From: delvh Date: Wed, 23 Sep 2020 20:50:16 +0200 Subject: [PATCH] Removed annoying Javadoc error --- .../dev/kske/eventbus/EventBusException.java | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main/java/dev/kske/eventbus/EventBusException.java b/src/main/java/dev/kske/eventbus/EventBusException.java index 1c46c80..5b3eb8e 100644 --- a/src/main/java/dev/kske/eventbus/EventBusException.java +++ b/src/main/java/dev/kske/eventbus/EventBusException.java @@ -1,8 +1,9 @@ package dev.kske.eventbus; /** - * This runtime exception is thrown when an event bus error occurs. This can either occur while - * registering event listeners with invalid handlers, or when an event handler throws an exception. + * This runtime exception is thrown when an event bus error occurs. This can + * either occur while registering event listeners with invalid handlers, or when + * an event handler throws an exception. * * @author Kai S. K. Engelbart * @since 0.0.1 @@ -11,10 +12,21 @@ public class EventBusException extends RuntimeException { private static final long serialVersionUID = 1L; + /** + * Creates a new event bus exception. + * + * @param message the message to display + * @param cause the cause of this exception + */ public EventBusException(String message, Throwable cause) { super(message, cause); } + /** + * Creates a new event bus exception. + * + * @param message the message to display + */ public EventBusException(String message) { super(message); } -- 2.30.2