当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala control.NonFatal用法及代码示例


用法:

object NonFatal

非致命Throwables的提取器。不会匹配像 VirtualMachineError (例如 OutOfMemoryErrorStackOverflowErrorVirtualMachineError 的子类)、 ThreadDeathLinkageErrorInterruptedExceptionControlThrowable 之类的致命错误。

请注意,scala.util.control.ControlThrowable 是一个内部 Throwable,与 NonFatal 不匹配(因此会被抛出)。

例如,所有无害的 Throwables 都可以通过以下方式捕获:

try {
  // dangerous stuff
} catch {
  case NonFatal(e) => log.error(e, "Something not that bad.")
 // or
  case e if NonFatal(e) => log.error(e, "Something not that bad.")
}

源码:

NonFatal.scala

相关用法


注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 control.NonFatal。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。