Add generated serialVersionUUID to exceptions
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / error / ParsingException.java
index 808efe0dec1358be082cb5d352659935e9f78820..f1e6f2998eaa8db103fac9cc820ab34339f76e8b 100644 (file)
@@ -5,30 +5,31 @@
  * 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;
 
 /**
  * The ParsingException is thrown when JSON could not be successfully parsed.
  */
 public class ParsingException extends RuntimeException {
+    private static final long serialVersionUID = -3950575478467855764L;
 
     public ParsingException() {
     }
 
-    public ParsingException(String message) {
+    public ParsingException(final String message) {
         super(message);
     }
 
-    public ParsingException(String message, Throwable cause) {
+    public ParsingException(final String message, final Throwable cause) {
         super(message, cause);
     }
 
-    public ParsingException(Throwable cause) {
+    public ParsingException(final Throwable cause) {
         super(cause);
     }
 
-    public ParsingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
+    public ParsingException(final String message, final Throwable cause, final boolean enableSuppression,
+            final boolean writableStackTrace) {
         super(message, cause, enableSuppression, writableStackTrace);
     }
 }