Merged DEV/CMIS_10 to HEAD

18731: SAIL-169: CMIS REST versioning compliance
      - Rendering of "via" link for working copy and "current-version" and "working-copy" links for documents
      - Added ability to dereference object IDs in cmisproperty() template function
      - Fixed broken CMIS index page


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18896 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2010-02-27 13:24:10 +00:00
parent 396dbb6ef7
commit 73f11285b7
3 changed files with 16 additions and 8 deletions

View File

@@ -28,8 +28,8 @@ public class CMISObjectNotFoundException extends CMISServiceException
{
private static final long serialVersionUID = 1726826685938651586L;
public CMISObjectNotFoundException(String objectId)
public CMISObjectNotFoundException(String message)
{
super("Unable to find Object " + objectId, "objectNotFound", 404);
super(message, "objectNotFound", 404);
}
}