dashboard
repositories
activity
search
login
main
/
securis-client
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#2140 fix - Removed config file from jar and added a new exception for expi...
rsanchez
2014-12-11
5ff7160871b0ea6cbcc8ead0f0fc40cd15349bae
[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);
}
}