Fix eclipse/checkstyle warnings
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / tree / ModifiedNodeDoesNotExistException.java
index d769b9906cb4e4d1a925215cf244c4dda7d95946..951463e490af8a20069c31574e47681b8f9f10ba 100644 (file)
@@ -15,24 +15,19 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
  * modified or written did not exist when transaction started
  * and still does not exists when transaction is processed.
  *
+ * <p>
  * Note if node existed in first place and was removed by other transaction,
  * thrown exception should be {@link ConflictingModificationAppliedException}.
- *
- *
  */
 public class ModifiedNodeDoesNotExistException extends DataValidationFailedException {
-
-    /**
-     *
-     */
     private static final long serialVersionUID = 1L;
 
-    public ModifiedNodeDoesNotExistException(final YangInstanceIdentifier path, final String message, final Throwable cause) {
+    public ModifiedNodeDoesNotExistException(final YangInstanceIdentifier path, final String message,
+            final Throwable cause) {
         super(path, message, cause);
     }
 
     public ModifiedNodeDoesNotExistException(final YangInstanceIdentifier path, final String message) {
         super(path, message);
     }
-
 }