PodCreationException.withPodName constructor

PodCreationException.withPodName(
  1. String name,
  2. String msg, {
  3. Throwable? cause,
})

Create a new PodCreationException with a pod name.

Implementation

PodCreationException.withPodName(String this.name, String msg, {Throwable? cause})
  : resourceDescription = null,
    _relatedCauses = null,
    super("Failed to create pod '$name': $msg", cause);