X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fsharding%2FDOMDataTreeShardCreationFailedException.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fsharding%2FDOMDataTreeShardCreationFailedException.java;h=c9b2c305848ba7c410d498c28bed21e2dba35b8b;hb=127042ea7e148d9dc0282acc3780b4754ca69e12;hp=eda11532ceba84f48c9f7c47f88e4239d4ae17af;hpb=1e8d188e98614a1f3d781b2f80d61fcd0afde368;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DOMDataTreeShardCreationFailedException.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DOMDataTreeShardCreationFailedException.java index eda11532ce..c9b2c30584 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DOMDataTreeShardCreationFailedException.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/sharding/DOMDataTreeShardCreationFailedException.java @@ -5,11 +5,10 @@ * 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.cluster.sharding; import com.google.common.annotations.Beta; -import javax.annotation.Nonnull; +import org.eclipse.jdt.annotation.NonNull; /** * Exception thrown when there was a at any point during the creation of a shard via {@link DistributedShardFactory}. @@ -18,11 +17,11 @@ import javax.annotation.Nonnull; public class DOMDataTreeShardCreationFailedException extends Exception { private static final long serialVersionUID = 1L; - public DOMDataTreeShardCreationFailedException(@Nonnull final String message) { + public DOMDataTreeShardCreationFailedException(final @NonNull String message) { super(message); } - public DOMDataTreeShardCreationFailedException(@Nonnull final String message, @Nonnull final Throwable cause) { + public DOMDataTreeShardCreationFailedException(final @NonNull String message, final @NonNull Throwable cause) { super(message, cause); } }