updated return message when requested resource is not found

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@660784 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2008-05-28 02:09:57 +00:00
parent 67de1cbc3b
commit 5b5ab1010c
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ public class ArchivaDavResourceFactory
if( resource == null )
{
e = new DavException( HttpServletResponse.SC_NOT_FOUND, "Repository does not exist" );
e = new DavException( HttpServletResponse.SC_NOT_FOUND, "Resource does not exist" );
}
else
{