Add generated serialVersionUUID to exceptions
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / error / TableSchemaNotFoundException.java
index 420b5278e9659cf199798c51c4ab97a28cef0114..1b817ca1640c1b5d80eb78d024d24a55b9336885 100644 (file)
@@ -5,24 +5,23 @@
  * 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;
 
 /**
  * This exception is thrown when a TableSchema cannot be found.
  */
 public class TableSchemaNotFoundException extends RuntimeException {
+    private static final long serialVersionUID = -5030339562929850369L;
 
-    public TableSchemaNotFoundException(String message) {
+    public TableSchemaNotFoundException(final String message) {
         super(message);
     }
 
-    public TableSchemaNotFoundException(String message, Throwable cause) {
+    public TableSchemaNotFoundException(final String message, final Throwable cause) {
         super(message, cause);
     }
 
-    public static String createMessage(String tableName, String schemaName) {
+    public static String createMessage(final String tableName, final String schemaName) {
         return "Unable to locate TableSchema for " +  tableName + " in " + schemaName;
     }
-
 }