---
url: /docs/guide/usage/linter/rules/unicorn/prefer-optional-catch-binding.md
---

### What it does

Prefers omitting the catch binding parameter if it is unused.

### Why is this bad?

It is unnecessary to bind the error to a variable if it is not used.

### Examples

Examples of **incorrect** code for this rule:

```javascript
try {
  // ...
} catch (e) {}
```

Examples of **correct** code for this rule:

```javascript
try {
  // ...
} catch {}
```

## How to use

## Version

This rule was added in v0.0.17.

## References
