Packages

p

monix.execution

exceptions

package exceptions

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. class APIContractViolationException extends IllegalStateException with Serializable

    Generic exception thrown on API contract violations.

  2. class BufferOverflowException extends RuntimeException with Serializable

    An exception emitted on buffer overflows, like when using OverflowStrategy.Fail.

  3. class CallbackCalledMultipleTimesException extends APIContractViolationException

    Thrown when signaling is attempted multiple times for Callback or similar.

  4. final class CompositeException extends RuntimeException with Serializable

    A composite exception represents a list of exceptions that were caught while delaying errors.

  5. class DownstreamTimeoutException extends TimeoutException with Serializable

    Exception thrown whenever a downstream listener on a back-pressured data-source is taking too long to process a received event.

  6. final case class DummyException(message: String) extends RuntimeException with Serializable with Product

    Used in testing to trigger dummy exceptions.

    Used in testing to trigger dummy exceptions.

    Not to be used for anything except in testing, since this exception type implements structural equality.

    This means that these 2 exceptions are considered equal, even if they have different stack-traces:

    val dummy1 = DummyException("dummy")
    val dummy2 = DummyException("dummy")
    
    dummy == dummy2
    //=> true
  7. class ExecutionRejectedException extends RuntimeException with Serializable

    Exception thrown whenever an execution attempt was rejected.

    Exception thrown whenever an execution attempt was rejected.

    Such execution attempts can come for example from Task or from methods returning Future references, with this exception being thrown in case the execution was rejected due to in place protections, such as a circuit breaker.

  8. class UncaughtErrorException[E] extends RuntimeException

    The UncaughtErrorException wraps uncaught, generic errors.

    The UncaughtErrorException wraps uncaught, generic errors.

    val ex: UncaughtErrorException[String] =
      UncaughtErrorException("Error!")
  9. class UpstreamTimeoutException extends TimeoutException with Serializable

    Exception thrown whenever a upstream listener on a back-pressured data-source is taking too long to process a received event.

Ungrouped