All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactivestreams.tck.flow.support.TestException Maven / Gradle / Ivy

The newest version!
/***************************************************
 * Licensed under MIT No Attribution (SPDX: MIT-0) *
 ***************************************************/

package org.reactivestreams.tck.flow.support;

/**
 * Exception used by the TCK to signal failures.
 * May be thrown or signalled through {@link org.reactivestreams.Subscriber#onError(Throwable)}.
 */
public final class TestException extends RuntimeException {
  public TestException() {
    super("Test Exception: Boom!");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy