]> git.sesse.net Git - vlc/blob - bindings/java/org/videolan/jvlc/JVLCNoSuchVariableNameException.java
Java bindings by Filippo Carone.
[vlc] / bindings / java / org / videolan / jvlc / JVLCNoSuchVariableNameException.java
1 /*
2  * Created on 22-nov-2005
3  *
4  * This program is free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17  * 
18  */
19 /**
20  * @author Filippo Carone <filippo@carone.org>
21  */
22
23 package org.videolan.jvlc;
24
25 public class JVLCNoSuchVariableNameException extends Exception {
26
27     public JVLCNoSuchVariableNameException() {
28         super();
29         // TODO Auto-generated constructor stub
30     }
31
32     public JVLCNoSuchVariableNameException(String message) {
33         super(message);
34         // TODO Auto-generated constructor stub
35     }
36
37     public JVLCNoSuchVariableNameException(String message, Throwable cause) {
38         super(message, cause);
39         // TODO Auto-generated constructor stub
40     }
41
42     public JVLCNoSuchVariableNameException(Throwable cause) {
43         super(cause);
44         // TODO Auto-generated constructor stub
45     }
46
47 }