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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy