加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Scala:如何确定失败的异常类型

发布时间:2020-12-16 19:15:02 所属栏目:安全 来源:网络整理
导读:看看这段代码: userService.insert(user) match { case Success(f) = Logger.debug("User created successfully") case Failure(e) = { // how do I determine the type of `e`? }} 如何确定Failure包含的异常类型?我需要根据异常类型采取不同的操作. 解决
看看这段代码:

userService.insert(user) match {
  case Success(f) => Logger.debug("User created successfully")
  case Failure(e) => {
     // how do I determine the type of `e`?
  }
}

如何确定Failure包含的异常类型?我需要根据异常类型采取不同的操作.

解决方法

case Success(f) => 
case Failure(e: ExceptionType1) =>
case Failure(e: ExceptionType2) => 
case Failure(e) => // other

要么

case Success(f) =>
case Failure(e) => e match {
   case e1: ExceptionType1 =>
   case e2: ExceptioNType2 =>
   case _ => 
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读