BucketNotCreatedException constructor

BucketNotCreatedException([
  1. String? msg
])

Implementation

BucketNotCreatedException([String? msg])
    : super(
        'storage bucket wasn\'t created! please create it first: ${msg ?? ''}',
        ErrorCodes.storageBucketPathInvalid,
      );