ValidationException constructor
Creates a ValidationException with an optional custom message and field-level errors.
Implementation
const ValidationException({String? message, this.errors = const <String, dynamic>{}, super.originalException, super.errorCode, super.traceId})
: super(message: message ?? "The information provided was invalid.");