EncryptionException constructor

EncryptionException([
  1. String? message
])

Implementation

EncryptionException([String? message])
    : super(
        'An error happened while encryption: $message',
        ErrorCodes.notAuthorizedApiKey,
      );