Add generated serialVersionUUID to exceptions
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / error / BadSchemaException.java
index 1a8fc4a04dc478ef8d39e76a5238b912adb76b93..057541277818e7e52c8b069fa7e5e31f1a569665 100644 (file)
@@ -5,20 +5,19 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.ovsdb.lib.error;
 
 /**
  * BadSchema exception is thrown when the received schema is invalid.
  */
 public class BadSchemaException extends RuntimeException {
+    private static final long serialVersionUID = -7045398620135011253L;
 
-    public BadSchemaException(String message) {
+    public BadSchemaException(final String message) {
         super(message);
     }
 
-    public BadSchemaException(String message, Throwable cause) {
+    public BadSchemaException(final String message, final Throwable cause) {
         super(message, cause);
     }
-
 }