View Javadoc

1   package com.atlassian.asap.api.exception;
2   
3   /**
4    * Thrown when an incoming HTTP request cannot be authenticated using ASAP, due to a permanent failure in the
5    * incoming ASAP header (eg. missing header or failed claims)
6    */
7   public class PermanentAuthenticationFailedException extends AuthenticationFailedException {
8       public PermanentAuthenticationFailedException(String message) {
9           this(message, null);
10      }
11  
12      public PermanentAuthenticationFailedException(String message, String unverifiedIssuer) {
13          super(message, unverifiedIssuer);
14      }
15  }