xpertss.auth.tkt.TokenMissingException 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 this valid ticket does not contain the required
* token. This exception should treated as an authorization failure.
*/
public class TokenMissingException extends InvalidTicketException {
public TokenMissingException() {
}
public TokenMissingException(String message) {
super(message);
}
public TokenMissingException(String message, Throwable cause) {
super(message, cause);
}
public TokenMissingException(Throwable cause) {
super(cause);
}
}