noUselessCatch
诊断类别:lint/complexity/noUselessCatch
¥Diagnostic Category: lint/complexity/noUselessCatch
自从:v1.0.0
¥Since: v1.0.0
来源:
¥Sources:
-
与以下相同:
no-useless-catch
¥Same as:
no-useless-catch
禁止不必要的 catch
子句。
¥Disallow unnecessary catch
clauses.
仅重新抛出原始错误的 catch
子句是多余的,并且对程序的运行时行为没有影响。这些冗余子句可能造成混乱和代码膨胀,因此最好禁止这些不必要的 catch
子句。
¥A catch
clause that only rethrows the original error is redundant,
and has no effect on the runtime behavior of the program.
These redundant clauses can be a source of confusion and code bloat,
so it’s better to disallow these unnecessary catch
clauses.
¥Examples
¥Invalid
code-block.js:4:5 lint/complexity/noUselessCatch ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ The catch clause that only rethrows the original error is useless.
2 │ doSomething();
3 │ } catch(e) {
> 4 │ throw e;
│ ^^^^^^^^
5 │ }
6 │
ℹ An unnecessary catch clause can be confusing.
code-block.js:4:5 lint/complexity/noUselessCatch FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ The catch clause that only rethrows the original error is useless.
2 │ doSomething();
3 │ } catch(e) {
> 4 │ throw e;
│ ^^^^^^^^
5 │ } finally {
6 │ doCleanUp();
ℹ An unnecessary catch clause can be confusing.
ℹ Unsafe fix: Remove the catch clause.
1 1 │ try {
2 2 │ doSomething();
3 │ - }·catch(e)·{
4 │ - ····throw·e;
5 │ - }·finally·{
3 │ + }·finally·{
6 4 │ doCleanUp();
7 5 │ }
¥Valid
¥Related links