Skip to content

Commit cf1a301

Browse files
addressing sql-docs issue 4221
1 parent 4d5b202 commit cf1a301

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/language-elements/try-catch-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ END CATCH
6868

6969
If there is an error in the code that is enclosed in a TRY block, control passes to the first statement in the associated CATCH block. When the code in the CATCH block finishes, control passes to the statement immediately after the END CATCH statement.
7070

71-
>[!NOTE]
71+
> [!NOTE]
7272
> If the END CATCH statement is the last statement in a stored procedure or trigger, control is passed back to the statement that called the stored procedure or fired the trigger.
7373
7474
Errors trapped by a CATCH block are not returned to the calling application. If any part of the error information must be returned to the application, the code in the CATCH block must do so by using mechanisms such as SELECT result sets or the RAISERROR and PRINT statements.

0 commit comments

Comments
 (0)