dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2140 feature - fix - Added load of config file from ENV variable and chang...
rsanchez
2014-12-12
cb60d030f49ec48fb2021480919cb364d5ff442d
[securis-client.git]
/
src
/
main
/
java
/
net
/
curisit
/
securis
/
ExpiredLicenseException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package net.curisit.securis;
public class ExpiredLicenseException extends SeCurisException {
private static final long serialVersionUID = 5702956178417661458L;
public ExpiredLicenseException() {
super("License has expired", null);
}
public ExpiredLicenseException(String msg, Exception e) {
super(msg, e);
}
public ExpiredLicenseException(String msg) {
super(msg);
}
}