FMTCInitialisationException constructor

  1. @internal
FMTCInitialisationException(
  1. String message,
  2. FMTCInitialisationExceptionType type, {
  3. String? storeName,
  4. Object? originalError,
})

An Exception raised when FMTC failed to initialise a store

Can be thrown for multiple reasons. See type and FMTCInitialisationExceptionType for more information.

A failed store initialisation will always result in the store being deleted ASAP, regardless of its contents.

Implementation

@internal
FMTCInitialisationException(
  this.message,
  this.type, {
  this.storeName,
  this.originalError,
});