Skip to content

Commit cb64971

Browse files
committed
chore: rename error handling to exceptions in tree
1 parent df95ccd commit cb64971

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/kr.tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<toc-element topic="control-flow.md"/>
5252
<toc-element topic="returns.md"/>
5353
</toc-element>
54-
<toc-element toc-title="Error handling" topic="exceptions.md"/>
54+
<toc-element topic="exceptions.md"/>
5555
<toc-element toc-title="Functions">
5656
<toc-element topic="functions.md"/>
5757
<toc-element toc-title="Lambdas" topic="lambdas.md"/>

docs/topics/exceptions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[//]: # (title: Exceptions)
22

3+
<web-summary>Learn how Kotlin uses exceptions to handle runtime errors.</web-summary>
4+
35
Exceptions help your code run more predictably, even when runtime errors occur that could disrupt program execution.
46
Kotlin treats all exceptions as _unchecked_ by default.
57
Unchecked exceptions simplify the exception handling process: you can catch exceptions, but you don't need to explicitly handle or [declare](java-to-kotlin-interop.md#checked-exceptions) them.

0 commit comments

Comments
 (0)