ProjectNotFoundException constructor

ProjectNotFoundException(
  1. String reference
)

Creates the failure for the project identified by reference.

Implementation

ProjectNotFoundException(String reference)
  : super(
      'Project not found: $reference',
      code: ErrorCodes.projectNotFound,
      reference: reference,
    );