dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2205 feature - Added support for name and email in license requests
rsanchez
2014-12-17
06f5e0b58dd77a11519f5f3d8e3b9ffe99b3b291
[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);
}
}