SystemException constructor
const
SystemException({
- String? message = 'System error.',
- Exception? innerException,
- StackTrace? stackTrace,
Implementation
const SystemException({
super.message = 'System error.',
super.innerException,
super.stackTrace,
}) : super(typeName: 'SystemException');