Fix checkstyle violations in sal-dom-api
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMRpcImplementationNotAvailableException.java
index cca9a452b8f1fc29a9ad98aba9055921e89e557b..71685285d2f3ead0e6bf881cc553f1a02e979802 100644 (file)
@@ -20,7 +20,8 @@ public class DOMRpcImplementationNotAvailableException extends DOMRpcException {
         super(String.format(format, args));
     }
 
-    public DOMRpcImplementationNotAvailableException(@Nonnull final Throwable cause, @Nonnull final String format, final Object... args) {
+    public DOMRpcImplementationNotAvailableException(@Nonnull final Throwable cause, @Nonnull final String format,
+            final Object... args) {
         super(String.format(format, args), Preconditions.checkNotNull(cause));
     }
 }