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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy