mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged DEV to HEAD
51986: Propagate originating stack trace when InvalidNodeRefException passes through MT interceptor - CLOUD-1685, CLOUD-1827, CLOUD-1828 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@52000 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -141,7 +141,10 @@ public class MultiTNodeServiceInterceptor extends DelegatingIntroductionIntercep
|
||||
}
|
||||
catch (InvalidNodeRefException inre)
|
||||
{
|
||||
throw new InvalidNodeRefException(inre.getMessage(), tenantService.getBaseName(inre.getNodeRef()));
|
||||
throw new InvalidNodeRefException(
|
||||
"Failed invocation: " + invocation,
|
||||
tenantService.getBaseName(inre.getNodeRef()),
|
||||
inre);
|
||||
}
|
||||
|
||||
if (methodName.equals("getProperty"))
|
||||
|
Reference in New Issue
Block a user