diff --git a/docs/rules/no-useless-catch.md b/docs/rules/no-useless-catch.md index d320e561d07..0562063f634 100644 --- a/docs/rules/no-useless-catch.md +++ b/docs/rules/no-useless-catch.md @@ -43,6 +43,12 @@ try { } catch (e) { handleError(e); } + +try { + doSomethingThatMightThrow(); +} finally { + cleanUp(); +} ``` ## When Not To Use It