try
{
Integer depth = callTreeRecorder.getDepth() - 1;
callTreeRecorder.setDepth(depth);
CallTree callTree = callTreeRecorder.getCallTree();
// �v���ΏۊO�̐[�x�ł���Ή������Ȃ�
if (callTree.containsDepth(depth) == false) return;
callTree.removeDepth(depth);
recordPostInvocation(thisObject, returnValue, methodName,
cause, callTreeRecorder, telegramId);
}
finally