Fixed Checkstyle violation errors in mdsal-dom-api module
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMRpcImplementationNotAvailableException.java
index 5fa076284b24eee1c9f24030127d28022c461dbc..22f51166876f4e26f556cc144d40ab91bc975ecf 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));
     }
 }