NoBucketException constructor

NoBucketException(
  1. String? id
)

Implementation

NoBucketException(String? id)
    : super(
        'please provide a valid bucket id or don\'t provide any ids for using the default bucket: $id',
        ErrorCodes.noBucketFound,
        errorCode: 404,
      );