Fix sonar warnings in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / sharding / DOMDataTreeShardCreationFailedException.java
index f6628ad9de0eb8f955864cc43a13346ea3712ce0..eda11532ceba84f48c9f7c47f88e4239d4ae17af 100644 (file)
@@ -18,11 +18,11 @@ import javax.annotation.Nonnull;
 public class DOMDataTreeShardCreationFailedException extends Exception {
     private static final long serialVersionUID = 1L;
 
-    public DOMDataTreeShardCreationFailedException(final @Nonnull String message) {
+    public DOMDataTreeShardCreationFailedException(@Nonnull final String message) {
         super(message);
     }
 
-    public DOMDataTreeShardCreationFailedException(final @Nonnull String message, final @Nonnull Throwable cause) {
+    public DOMDataTreeShardCreationFailedException(@Nonnull final String message, @Nonnull final Throwable cause) {
         super(message, cause);
     }
 }