Commit 67923a07 authored by Filippo Carone's avatar Filippo Carone

jvlc: code formatted

parent 267a19ca
......@@ -30,17 +30,32 @@ package org.videolan.jvlc;
import java.lang.Exception;
public class VLCException extends Exception {
public VLCException() {
public class VLCException extends Exception
{
/**
*
*/
private static final long serialVersionUID = -3063632323017889L;
public VLCException()
{
super();
}
public VLCException(String message) {
public VLCException(String message)
{
super(message);
}
public VLCException(String message,Throwable cause) {
super(message,cause);
public VLCException(String message, Throwable cause)
{
super(message, cause);
}
public VLCException(Throwable cause) {
public VLCException(Throwable cause)
{
super(cause);
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment