Home » Scala Finally Block

Scala Finally Block

by Online Tutorials Library

Scala Finally

The finally block is used to release resources during exception. Resources may be file, network connection, database connection etc. the finally block executes guaranteed. The following program illustrate the use of finally block.

Scala Finally Block Example

Output:

java.lang.ArrayIndexOutOfBoundsException: 10  Finally block always executes  Rest of the code is executing...  

You may also like