Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
67923a07
Commit
67923a07
authored
Jul 31, 2008
by
littlejohn
Browse files
jvlc: code formatted
parent
267a19ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/java/core/src/main/java/org/videolan/jvlc/VLCException.java
View file @
67923a07
...
...
@@ -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
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment