dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#0 fix - Allow null values in some request fields
rsanchez
2015-08-17
397d25ea424248f1581b2fa6ba910ace7f5187f1
[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);
}
}