MaxNestingDepthException constructor

MaxNestingDepthException(
  1. int maxDepth
)

Creates a max nesting depth exception.

Implementation

MaxNestingDepthException(this.maxDepth)
  : super(
      'Maximum nesting depth ($maxDepth) exceeded. '
      'Check for circular references in replay files.',
    );