addRelatedCause method

void addRelatedCause(
  1. Throwable ex
)

Add a related cause to this pod creation exception, not being a direct cause of the failure but having occurred earlier in the creation of the same pod instance.

Implementation

void addRelatedCause(Throwable ex) {
  (_relatedCauses ?? <Throwable>[]).add(ex);
}