dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#396 fix - Fixed more SonarQube issues
Roberto Sánchez
2014-09-19
8d5386be38db25a2a41c3bf6c876adee21ca26cc
[common/securis.git]
/
securis
/
src
/
main
/
java
/
net
/
curisit
/
securis
/
services
/
exception
/
SeCurisServiceException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package net.curisit.securis.services.exception;
import net.curisit.integrity.exception.CurisException;
public class SeCurisServiceException extends CurisException {
private int status = 0;
public SeCurisServiceException(int status, String msg) {
super(msg);
this.status = status;
}
public int getStatus() {
return status;
}
/**
*
*/
private static final long serialVersionUID = 1L;
}