From 7d02526c340a29556c95c9cbb87ee41ab61640f2 Mon Sep 17 00:00:00 2001 From: Kevin Roast Date: Tue, 31 Jan 2006 18:48:07 +0000 Subject: [PATCH] Exception message changed to fix AWC-467 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2268 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../security/authentication/RepositoryAuthenticationDao.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/java/org/alfresco/repo/security/authentication/RepositoryAuthenticationDao.java b/source/java/org/alfresco/repo/security/authentication/RepositoryAuthenticationDao.java index 3a12cd8c98..8d9ca82c6b 100644 --- a/source/java/org/alfresco/repo/security/authentication/RepositoryAuthenticationDao.java +++ b/source/java/org/alfresco/repo/security/authentication/RepositoryAuthenticationDao.java @@ -227,7 +227,7 @@ public class RepositoryAuthenticationDao implements MutableAuthenticationDao NodeRef userRef = getUserOrNull(userName); if (userRef == null) { - throw new AuthenticationException("User does not exist: " + userName); + throw new AuthenticationException("User name does not exist: " + userName); } Map properties = nodeService.getProperties(userRef); String salt = null; // GUID.generate(); @@ -243,7 +243,7 @@ public class RepositoryAuthenticationDao implements MutableAuthenticationDao NodeRef userRef = getUserOrNull(userName); if (userRef == null) { - throw new AuthenticationException("User does not exist: " + userName); + throw new AuthenticationException("User name does not exist: " + userName); } nodeService.deleteNode(userRef); }