Skip to content

Commit 027ebf3

Browse files
authored
Removed "how to" in title
1 parent 4b96e72 commit 027ebf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/general-development/how-to-catch-exceptions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: How to Catch Exceptions
2+
title: Catch exceptions
33
ms.date: 09/25/2017
44
keywords: errors,how to,howdoi,howto
55
f1_keywords:
@@ -9,7 +9,7 @@ ms.assetid: de5fdb67-201b-4d7a-90a8-99ab7e51ea4e
99
---
1010

1111

12-
# How to: Catch Exceptions
12+
# Catch exceptions
1313

1414
You place the sections of code that might throw exceptions in a try block and place code that handles exceptions in a catch block. The order of catch statements is important. When an exception occurs, it is passed up the stack and each catch block is given the opportunity to handle it. The catch block that should handle the exception is determined by matching the type of the exception to the name of the exception specified in the catch block. For example, the following catch block catches Simple Object Access Protocol (SOAP) exceptions:
1515

0 commit comments

Comments
 (0)