dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 feature - Added more License fields, metadata section for application sp...
Roberto Sánchez
2014-02-21
f1965e6375e2e556f642f6002b4bb5add8a20ab8
[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
package net.curisit.securis;
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);
}
}