View Javadoc

1   package com.atlassian.asap.core.exception;
2   
3   import com.atlassian.asap.api.exception.InvalidTokenException;
4   
5   /**
6    * Indicates that the JWT was not well-formed.
7    */
8   public class JwtParseException extends InvalidTokenException {
9       public JwtParseException(String message, Throwable cause) {
10          super(message, cause);
11      }
12  
13      public JwtParseException(Throwable cause) {
14          super(cause);
15      }
16  
17      public JwtParseException(String reason) {
18          super(reason);
19      }
20  }