MultiplePrismaRequestException constructor

const MultiplePrismaRequestException({
  1. required String message,
  2. required Iterable<PrismaRequestException> exceptions,
  3. Engine? engine,
})

Create a new instance of MultiplePrismaRequestException.

Implementation

const MultiplePrismaRequestException({
  /// The error message to display.
  required super.message,

  /// The list of [PrismaRequestException]s.
  required this.exceptions,

  /// The Prisma engine that caused the error.
  super.engine,
});