kotlin
  1. kotlin-multiple-catch-block

Kotlin Multiple Catch Block

In Kotlin, you can catch multiple exceptions in a single catch block. This can simplify your code and reduce redundancy. In this tutorial, we'll discuss how you can use multiple catch blocks in Kotlin.

Syntax

The syntax for using multiple catch blocks in Kotlin is as follows:

try {
    // code that may throw exceptions
} catch (exceptionType1: Exception1) {
    // handle exception 1
} catch (exceptionType2: Exception2) {
    // handle exception 2
} catch (exceptionType3: Exception3) {
    // handle exception 3
} finally {
    // code that will always be executed
}

Example

Let's say you have a function that reads data from a file and performs some calculations. The function may throw IOException or NumberFormatException. You can use multiple catch blocks to handle these exceptions separately. Here's an example:

fun calculate() {
    try {
        val file = File("data.txt")
        val lines = file.readLines()

        // perform calculations

    } catch (e: IOException) {
        println("Error reading file: ${e.message}")
    } catch (e: NumberFormatException) {
        println("Error converting string to number: ${e.message}")
    } finally {
        println("Calculations completed.")
    }
}

Output

If the file reading process throws an IOException, the following output will be displayed:

Error reading file: Could not read file data.txt
Calculations completed.

If the conversion process throws a NumberFormatException, the following output will be displayed:

Error converting string to number: For input string: "abc"
Calculations completed.

If no exceptions are thrown, the following output will be displayed:

Calculations completed.

Explanation

Using multiple catch blocks in Kotlin allows you to catch and handle different types of exceptions separately. This can help you write more efficient and reusable code.

In the example above, we first try to read the data from the file using the readLines() function. If this throws an IOException, we catch the exception and print an error message. If the read operation is successful, we continue with the calculations. If the calculations require conversion of string to number, and this throws a NumberFormatException, we again catch the exception and print an error message. Finally, we use a finally block to print "Calculations completed." message, which will always be executed, regardless of whether an exception was thrown or not.

Use

Using multiple catch blocks in Kotlin can help you handle different types of exceptions separately and write more efficient code that can handle errors gracefully.

Important Points

  • You can have multiple catch blocks in a try-catch statement.
  • The catch blocks will be executed in order of appearance, if their exception types are matched.
  • Finally block will be executed after the try block, irrespective of whether an exception was thrown or not.
  • When catching multiple exceptions, make sure to catch subclasses before superclasses.

Summary

In this tutorial, we discussed how you can use multiple catch blocks in Kotlin. We covered the syntax, example, output, explanation, use, important points, and summary of using multiple catch blocks in Kotlin. With this knowledge, you can handle different types of exceptions separately and write more efficient and graceful code.

Published on: