DocNotFoundException constructor

DocNotFoundException(
  1. String docId
)

Implementation

DocNotFoundException(String docId)
    : super(
        'the doc with id $docId not found',
        ErrorCodes.docNotFound,
      );