dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2021 feature - Updated JSON library to the latest version
rsanchez
2014-10-22
ffc60638fba7475b4cb6a863aa8f27c7e5a9b059
[securis-client.git]
/
src
/
main
/
java
/
net
/
curisit
/
securis
/
SeCurisException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package net.curisit.securis;
import java.net.URISyntaxException;
public class SeCurisException extends Exception {
private static final long serialVersionUID = 5702956178417661458L;
public SeCurisException() {
}
public SeCurisException(String msg, Exception e) {
super(msg, e);
}
public SeCurisException(String msg) {
super(msg);
}
public static void main(String[] args) throws URISyntaxException {
License.main(new String[]
{ "-g" });
}
}