ExceptionInfo constructor

ExceptionInfo({
  1. required String? message,
  2. required String severity,
  3. required String cause,
})

Create a new ExceptionInfo.

Implementation

ExceptionInfo({required this.message, required this.severity, required this.cause});