xpertss.auth.tkt.TicketNotFoundException 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 auth ticket cookie was not found
*/
public class TicketNotFoundException extends RuntimeException {
public TicketNotFoundException() {
}
public TicketNotFoundException(String message) {
super(message);
}
public TicketNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public TicketNotFoundException(Throwable cause) {
super(cause);
}
}