Packages

trait UncaughtExceptionReporter extends Serializable

An exception reporter is a function that logs an uncaught error.

Usually taken as an implicit when executing computations that could fail, but that must not blow up the call-stack, like asynchronous tasks.

A default implicit is provided that simply logs the error on STDERR.

Annotations
@implicitNotFound("No ExceptionReporter was found in context for " +
"reporting uncaught errors, either build one yourself or use " +
"an implicit Scheduler (schedulers are ExceptionReporters)"
)
Source
UncaughtExceptionReporter.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UncaughtExceptionReporter
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def reportFailure(ex: Throwable): Unit