in src/main/java/com/intellij/rt/debugger/agent/CaptureStorage.java [336:347]
private static CapturedStack createCapturedStack(Throwable exception, CapturedStack insertMatch) {
if (insertMatch != null) {
CapturedStack stack = new DeepCapturedStack(exception, insertMatch);
if (stack.getRecursionDepth() > 100) {
ArrayList<StackTraceElement> trace = getStackTrace(stack, 500);
trace.trimToSize();
stack = new UnwindCapturedStack(trace);
}
return stack;
}
return new ExceptionCapturedStack(exception);
}