SqliteFailure constructor

const SqliteFailure(
  1. int code,
  2. int extendedCode,
  3. String message
)

Preserves the engine failure without interpreting its message.

Implementation

const SqliteFailure(this.code, this.extendedCode, this.message);