object Test { val foos = (1 to 1000).toSeq def main(args: Array[String]): Unit = { try foos.par.map(i => if (i % 37 == 0) sys.error("i div 37") else i) catch { case ex: RuntimeException => println("Runtime exception") } } }