xpertss.auth.tkt.ExpiredTicketException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth-tkt Show documentation
Show all versions of auth-tkt Show documentation
Servlet Filter that implements the ModAuthTkt functionality in Java
package xpertss.auth.tkt;
/**
* Thrown to indicate that the timestamp associated with the auth ticket
* has expired.
*/
public class ExpiredTicketException extends TicketNotFoundException {
public ExpiredTicketException() {
}
public ExpiredTicketException(String message) {
super(message);
}
public ExpiredTicketException(String message, Throwable cause) {
super(message, cause);
}
public ExpiredTicketException(Throwable cause) {
super(cause);
}
}