]> git.sesse.net Git - vlc/commitdiff
jvlc: code formatted
authorFilippo Carone <littlejohn@videolan.org>
Thu, 31 Jul 2008 21:49:29 +0000 (23:49 +0200)
committerFilippo Carone <littlejohn@videolan.org>
Thu, 31 Jul 2008 21:52:15 +0000 (23:52 +0200)
bindings/java/core/src/main/java/org/videolan/jvlc/VLCException.java

index e239e98afb0c02cda134bbb401d86347381f38c1..b5dae468f383a5ad88d8c0a901a7d4332a9a1724 100644 (file)
@@ -30,17 +30,32 @@ package org.videolan.jvlc;
 
 import java.lang.Exception;
 
-public class VLCException extends Exception {
-       public VLCException() {
-          super();
-       }
-       public VLCException(String message) {
-          super(message);
-       }
-       public VLCException(String message,Throwable cause) {
-          super(message,cause);
-       }
-       public VLCException(Throwable cause) {
-          super(cause);
-       }
+
+public class VLCException extends Exception
+{
+
+    /**
+     * 
+     */
+    private static final long serialVersionUID = -3063632323017889L;
+
+    public VLCException()
+    {
+        super();
+    }
+
+    public VLCException(String message)
+    {
+        super(message);
+    }
+
+    public VLCException(String message, Throwable cause)
+    {
+        super(message, cause);
+    }
+
+    public VLCException(Throwable cause)
+    {
+        super(cause);
+    }
 }