View Javadoc

1   package com.atlassian.plugins.rest.common.security;
2   
3   /**
4    * Exception thrown when a client tries to access a resources that requires authentication and the client is not authenticated.
5    * @see AnonymousAllowed
6    */
7   public class AuthenticationRequiredException extends SecurityException
8   {
9       public AuthenticationRequiredException()
10      {
11          super("Client must be authenticated to access this resource.");
12      }
13  }