Fix eclipse/checkstyle warnings
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / concurrent / ReflectiveExceptionMapper.java
index b00ed4f30472227496464bae1ac1aea60da44e9d..36f685fafd13750c80045d644e2a3fac962a5d42 100644 (file)
@@ -29,7 +29,8 @@ public final class ReflectiveExceptionMapper<X extends Exception> extends Except
     protected X newWithCause(final String message, final Throwable cause) {
         try {
             return ctor.newInstance(message, cause);
-        } catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
+        } catch (InstantiationException | IllegalAccessException | IllegalArgumentException
+                | InvocationTargetException e) {
             throw new IllegalStateException("Failed to instantiate exception " + ctor.getDeclaringClass(), e);
         }
     }