scala的异常处理try catch

Posted hhz-97

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scala的异常处理try catch相关的知识,希望对你有一定的参考价值。

object Test {
   def main(args: Array[String]) {
      try {
         val f = new FileReader("input.txt")
      } catch {
         case ex: FileNotFoundException =>{
            println("Missing file exception")
         }
         case ex: IOException => {
            println("IO Exception")
         }
      }
   }

 

以上是关于scala的异常处理try catch的主要内容,如果未能解决你的问题,请参考以下文章

scala的异常处理try catch

Java异常处理机制

java异常 throw和try-catch的关系

Scala Try Catch Finally

Java异常处理try...catch语句

Spark记录-Scala异常处理与文件I/O