Corrected wrong error message in ProviderManager.

This commit is contained in:
Luke Taylor 2007-10-13 12:15:13 +00:00
parent e561b87987
commit 98f6111d06

View File

@ -148,7 +148,7 @@ public class ProviderManager extends AbstractAuthenticationManager implements In
private void checkIfValidList(List listToCheck) {
if ((listToCheck == null) || (listToCheck.size() == 0)) {
throw new IllegalArgumentException("A list of AuthenticationManagers is required");
throw new IllegalArgumentException("A list of AuthenticationProviders is required");
}
}