Class BulkAddFailedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.atlassian.crowd.exception.BulkAddFailedException
All Implemented Interfaces:
Serializable

public class BulkAddFailedException extends Exception
Thrown to indicate that a bulk add operation has failed.
See Also:
  • Constructor Details

    • BulkAddFailedException

      public BulkAddFailedException(Set<String> failedUsers, Set<String> existingUsers)
    • BulkAddFailedException

      public BulkAddFailedException(String message, Set<String> failedUsers, Set<String> existingUsers)
    • BulkAddFailedException

      public BulkAddFailedException(String message, Set<String> failedUsers, Set<String> existingUsers, Throwable throwable)
  • Method Details

    • getFailedUsers

      public Set<String> getFailedUsers()
      Returns:
      the usernames of the users that it failed to create
    • getExistingUsers

      public Set<String> getExistingUsers()
      Returns:
      the usernames of the users that it failed to create because they already existed.