StorageBucketNameException constructor

StorageBucketNameException([
  1. String? msg
])

Implementation

StorageBucketNameException([String? msg])
    : super(
        'storage bucket name invalid, must only contain numbers and letters and not exceed 50 letters: ${msg ?? ''}',
        ErrorCodes.storageBucketNameInvalid,
      );