Fix newly-broken javadocs 94/21094/3
authorRobert Varga <rovarga@cisco.com>
Tue, 12 May 2015 23:54:07 +0000 (01:54 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 4 Jun 2015 10:58:41 +0000 (10:58 +0000)
Self-closing elements are not allowed.

Change-Id: I9d9c655d04c420b575e6ace51aaf2b0af931ecef
Signed-off-by: Robert Varga <rovarga@cisco.com>
(cherry picked from commit 484a0983ea48160af9a8c79acbed57ee984f5103)

opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/md/sal/binding/api/NotificationRejectedException.java

index 4423d79507ee7996925ca6c4d50531b2b64b3562..41c3a408a95b2578b889679e2d095406b5bf7ccd 100644 (file)
@@ -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;
 
 /**
- * <p/>
+ * <p>
  * This exception indicates that given notification can not be processed by corresponding mechanism.
  * More info can be provided in message.
- * <p/>
+ * </p>
  * <p>
  * Expected use: {@link NotificationPublishService}
  * </p>
  */
 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);
+    }
 }