DuplicateBucketNameException constructor

DuplicateBucketNameException([
  1. String? msg
])

Implementation

DuplicateBucketNameException([String? msg])
    : super(
        'duplicate bucket name: ${msg ?? ''}',
        ErrorCodes.storageBucketNameInvalid,
      );