dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#395 feature - Added expiration date to license and automatic preactivation...
Roberto Sánchez
2014-01-27
c3d9abdd3cd55a12d6509ade288648c2408baeb5
[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;
}