dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2021 fix - Changed "ping" command return to JSON, StatusBean
rsanchez
2014-09-29
464f9fc6047ff994728acf69f6f0d3971984b492
[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" });
}
}