View Javadoc
1   package org.springframework.security.oauth2.common.exceptions;
2   
3   import org.springframework.security.authentication.InsufficientAuthenticationException;
4   
5   /**
6    * @author Ryan Heaton
7    */
8   @SuppressWarnings("serial")
9   public class UnapprovedClientAuthenticationException extends InsufficientAuthenticationException {
10  
11    public UnapprovedClientAuthenticationException(String msg) {
12      super(msg);
13    }
14  
15    public UnapprovedClientAuthenticationException(String msg, Throwable t) {
16      super(msg, t);
17    }
18  }