View Javadoc

1   package com.atlassian.asap.core.exception;
2   
3   import com.atlassian.asap.api.exception.InvalidTokenException;
4   
5   /**
6    * Indicates that the token signature does not match its contents.
7    */
8   public class SignatureMismatchException extends InvalidTokenException {
9       public SignatureMismatchException(Throwable cause) {
10          super(cause);
11      }
12  
13      public SignatureMismatchException(String reason) {
14          super(reason);
15      }
16  }