xpertss.auth.tkt.InvalidTicketException 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 ticket did not authenticate properly.
*/
public class InvalidTicketException extends RuntimeException {
public InvalidTicketException() {
}
public InvalidTicketException(String message) {
super(message);
}
public InvalidTicketException(String message, Throwable cause) {
super(message, cause);
}
public InvalidTicketException(Throwable cause) {
super(cause);
}
}