Home » Scala Throw keyword

Scala Throw keyword

by Online Tutorials Library

Scala Throw keyword

You can throw exception explicitly in you code. Scala provides throw keyword to throw exception. The throw keyword mainly used to throw custom exception. An example is given below of using scala throw exception keyword.

Scala Throw Example

Output:

java.lang.ArithmeticException: You are not eligible  

You may also like