InternalCryptoException constructor

InternalCryptoException({
  1. Object? cause,
  2. StackTrace? stackTrace,
})

Implementation

InternalCryptoException({Object? cause, StackTrace? stackTrace})
    : super(
        'internal_error',
        SafeErrorMessages.internalError,
        cause: cause,
        stackTrace: stackTrace,
      );