码迷,mamicode.com
首页 > 其他好文 > 详细

scala的异常处理try catch

时间:2020-05-24 22:31:48      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:fileread   mis   reader   span   ring   array   try catch   object   scala   

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

标签:fileread   mis   reader   span   ring   array   try catch   object   scala   

原文地址:https://www.cnblogs.com/hhz-97/p/12953097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!