]> git.sesse.net Git - vlc/blob - bindings/java/core/src/main/java/org/videolan/jvlc/VLCException.java
jvlc: code formatted
[vlc] / bindings / java / core / src / main / java / org / videolan / jvlc / VLCException.java
1 /*****************************************************************************
2  * JVLC.java: Main Java Class, represents a libvlc_instance_t object
3  *****************************************************************************
4  *
5  * Copyright (C) 1998-2006 the VideoLAN team
6  * 
7  * Author: Philippe Morin <phmorin@free.fr>
8  *
9  * Created on 18-jul-2006
10  *
11  * $Id $
12  *
13  * This program is free software; you can redistribute it
14  * and/or modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2 of the
16  * License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful, but
19  * WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public
24  * License along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  * 
27  */
28
29 package org.videolan.jvlc;
30
31 import java.lang.Exception;
32
33
34 public class VLCException extends Exception
35 {
36
37     /**
38      * 
39      */
40     private static final long serialVersionUID = -3063632323017889L;
41
42     public VLCException()
43     {
44         super();
45     }
46
47     public VLCException(String message)
48     {
49         super(message);
50     }
51
52     public VLCException(String message, Throwable cause)
53     {
54         super(message, cause);
55     }
56
57     public VLCException(Throwable cause)
58     {
59         super(cause);
60     }
61 }