RefNotFound constructor

RefNotFound(
  1. String bucketName,
  2. String ref, [
  3. String? msg
])

Implementation

RefNotFound(String bucketName, String ref, [String? msg])
    : super(
        'path not found for this ref:BucketName: $bucketName\nRef: $ref, $msg',
        ErrorCodes.refNotFound,
        errorCode: HttpStatus.notFound,
      );