Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-wolfenden committed May 8, 2013
1 parent afbbcd7 commit 3e2d2d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ Policy
### Single exception type with condition

```csharp
Policy
.Handle<DivideByZeroException>()
.Or<ArgumentException>()

Policy
.Handle<SqlException>(ex => ex.Number == 1205)
```

### Multiple exception types

```csharp
Policy
.Handle<DivideByZeroException>()
.Or<ArgumentException>()
```

### Multiple exception types with condition
Expand Down

0 comments on commit 3e2d2d1

Please sign in to comment.