Add generated serialVersionUUID to exceptions
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / error / SchemaVersionMismatchException.java
index 43e9c0780c1a386ea7e82c55f5d575800bac5f30..4d982c49f9692d8a6cf787f75e34ad405326fc28 100644 (file)
@@ -15,8 +15,10 @@ import org.opendaylight.ovsdb.lib.notation.Version;
  * and the version requirements are not met.
  */
 public class SchemaVersionMismatchException extends RuntimeException {
+    private static final long serialVersionUID = -5194270510726950745L;
 
-    public SchemaVersionMismatchException(Version schemaVersion, Version fromVersion, Version untilVersion) {
+    public SchemaVersionMismatchException(final Version schemaVersion, final Version fromVersion,
+            final Version untilVersion) {
         super("The schema version used to access the table/column (" + schemaVersion + ") does not match the required"
                 + " version (from " + fromVersion + " to " + untilVersion + ")");
     }