All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xpertss.auth.tkt.ExpiredTicketException Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
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);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy