📅  最后修改于: 2021-01-09 12:01:22             🧑  作者: Mango
您可以在代码中显式抛出异常。 Scala提供了throw关键字来引发异常。 throw关键字主要用于引发自定义异常。下面给出一个使用scala throw exception关键字的示例。
class ExceptionExample2{
def validate(age:Int)={
if(age<18)
throw new ArithmeticException("You are not eligible")
else println("You are eligible")
}
}
object MainObject{
def main(args:Array[String]){
var e = new ExceptionExample2()
e.validate(10)
}
}
输出:
java.lang.ArithmeticException: You are not eligible