xpertss.auth.tkt.MalformedTicketException 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 the auth ticket is not of the correct form and
* should be treated in a similar way as if the ticket was not found.
*/
public class MalformedTicketException extends TicketNotFoundException {
public MalformedTicketException() {
}
public MalformedTicketException(String message) {
super(message);
}
public MalformedTicketException(String message, Throwable cause) {
super(message, cause);
}
public MalformedTicketException(Throwable cause) {
super(cause);
}
}