DBAdapterException constructor

DBAdapterException(
  1. String type,
  2. String message, {
  3. Object? parentError,
  4. StackTrace? parentStackTrace,
  5. Object? operation,
  6. Object? previousError,
})

Implementation

DBAdapterException(this.type, this.message,
    {this.parentError,
    this.parentStackTrace,
    this.operation,
    this.previousError})
    : super();