dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#1829 fix - Adding JsonAutodetect to beans to exclude them from obfuscation
Roberto Sánchez
2014-07-29
b78f8153d8c970440ca614b64e4638d8070cc0e1
[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);
}
}