1   package com.atlassian.seraph.auth;
2   
3   /**
4    * Enumeration used to determine the cause of any authentication errors.
5    * <p>
6    * Currently this is just used to indicate if a remote communication error has occurred (eg with LDAP server).
7    */
8   public enum AuthenticationErrorType
9   {
10      CommunicationError, UnknownError
11  }