From: Robert Varga Date: Tue, 12 May 2015 23:54:07 +0000 (+0200) Subject: Fix newly-broken javadocs X-Git-Tag: release/beryllium~523 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=60962894604d8264872b6b2904f0d87cb0c6f5a8 Fix newly-broken javadocs Self-closing elements are not allowed. Change-Id: I9d9c655d04c420b575e6ace51aaf2b0af931ecef Signed-off-by: Robert Varga (cherry picked from commit 484a0983ea48160af9a8c79acbed57ee984f5103) --- diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/NotificationRejectedException.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/NotificationRejectedException.java index 4423d79507..41c3a408a9 100644 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/NotificationRejectedException.java +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/NotificationRejectedException.java @@ -5,23 +5,25 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.controller.md.sal.binding.api; /** - *

+ *

* This exception indicates that given notification can not be processed by corresponding mechanism. * More info can be provided in message. - *

+ *

*

* Expected use: {@link NotificationPublishService} *

*/ public class NotificationRejectedException extends Exception { + private static final long serialVersionUID = 1L; - private static final long serialVersionUID = 3722954527834860394L; - - public NotificationRejectedException(String message) { + public NotificationRejectedException(final String message) { super(message); } + + public NotificationRejectedException(final String message, final Throwable cause) { + super(message, cause); + } }