ErrorExitException constructor
ErrorExitException([
- String? reason,
- Object? nestedException,
- StackTrace? nestedStackTrace
Creates an ErrorExitException. Provide a reason and causing exception if available which aids in testing and debugging.
Implementation
ErrorExitException([this.reason, this.nestedException, this.nestedStackTrace])
: super.error();