SystemException constructor

const SystemException({
  1. String? message = 'System error.',
  2. Exception? innerException,
  3. StackTrace? stackTrace,
})

Implementation

const SystemException({
  super.message = 'System error.',
  super.innerException,
  super.stackTrace,
}) : super(typeName: 'SystemException');