unused_catch_clause
The exception variable '{0}' isn't used, so the 'catch' clause can be removed.
Description
#The analyzer produces this diagnostic when a catch
clause is found, and
neither the exception parameter nor the optional stack trace parameter are
used in the catch
block.
Example
#The following code produces this diagnostic because e
isn't referenced:
dart
void f() {
try {
int.parse(';');
} on FormatException catch (e) {
// ignored
}
}
Common fixes
#Remove the unused catch
clause:
dart
void f() {
try {
int.parse(';');
} on FormatException {
// ignored
}
}
除非另有说明,文档之所提及适用于 Dart 3.7.3 版本,本页面最后更新时间: 2025-05-08。 查看文档源码 或者 报告页面问题。