Add generated serialVersionUUID to exceptions
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / error / TyperException.java
index a8d6efc810292cc4f6b8ff6ebf882e0a4b9020f2..863f9f2195aad1252b726270767c39f3cbd924d2 100644 (file)
@@ -5,19 +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;
 
 /**
  * This is a generic exception thrown by the Typed Schema utilities.
  */
 public class TyperException extends RuntimeException {
+    private static final long serialVersionUID = 5464754787320848910L;
 
-    public TyperException(String message) {
+    public TyperException(final String message) {
         super(message);
     }
 
-    public TyperException(String message, Throwable cause) {
+    public TyperException(final String message, final Throwable cause) {
         super(message, cause);
     }
 }