Cleanup checkstyle warnings
[yangtools.git] / common / mockito-configuration / src / main / java / org / mockito / configuration / UnstubbedMethodException.java
index ac748661c03b8eaa404719f6531bf2d8fae9391f..5432e7c83260402451c7293f27730495c8b7ff73 100644 (file)
@@ -7,16 +7,13 @@
  */
 package org.mockito.configuration;
 
-
 /**
  * Exception to be thrown on unstubbed method call.
  */
 public class UnstubbedMethodException extends RuntimeException {
+    private static final long serialVersionUID = 1L;
 
-       private static final long serialVersionUID = 1L;
-
-       public UnstubbedMethodException(String message) {
-               super(message);
-       }
-
+    public UnstubbedMethodException(final String message) {
+        super(message);
+    }
 }