HumanException constructor

const HumanException({
  1. required String humanMessage,
  2. required String? originalMessage,
  3. required StackTrace? stackTrace,
  4. List<HumanException> errorsStack = const [],
})

Implementation

const HumanException({
  required this.humanMessage,
  required this.originalMessage,
  required this.stackTrace,
  this.errorsStack = const [],
});