101
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
Next TopicScala Throws Keyword