Data Structure
Java
Python
HTML
Interview Preparation
Tutorials
Courses
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.2K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.3K+ articles
Misc
7.7K+ articles
Kotlin
707+ articles
Kotlin Exception-Handling
5 posts
Recent Articles
Popular Articles
How to Throw a Custom Exception in Kotlin?
Last Updated: 25 February 2022
In addition to the built-in Exception Classes, you can create your own type of Exception that reflects your own cause of the exception. And you will appreciate the use of ...
read more
Kotlin
Geeks Premier League
Geeks-Premier-League-2022
Kotlin Exception-Handling
How to Use try - catch as an Expression in Kotlin?
Last Updated: 13 January 2022
The try statement consists of a try-block, which contains one or more statements. { } must always be used, even for single statements. A catch-block, a finally-block, or b...
read more
Kotlin
Kotlin Exception-Handling
Exception Handling in Kotlin with Examples
Last Updated: 16 August 2020
Exceptions are the error which comes at the runtime and disrupts your flow of execution of the program. Basically exception is the unwanted event that occurs at runtime. T...
read more
Picked
Kotlin
Kotlin Exception-Handling
Kotlin Nested try block and multiple catch block
Last Updated: 08 June 2025
In Kotlin, exception handling allows developers to manage errors gracefully and prevent application crashes. In this article, we will explore two advanced exception handli...
read more
Kotlin
Kotlin Exception-Handling
Kotlin Exception Handling - try, catch, throw and finally
Last Updated: 08 June 2025
Exception handling is an important part of programming that helps us manage errors in our code without crashing the entire application. In this article, we will learn abou...
read more
Kotlin
Kotlin Exception-Handling