001package org.reactivestreams.tck.support; 002 003/** 004 * Exception used by the TCK to signal failures. 005 * May be thrown or signalled through {@link org.reactivestreams.Subscriber#onError(Throwable)}. 006 */ 007public final class TestException extends RuntimeException { 008 public TestException() { 009 super("Test Exception: Boom!"); 010 } 011}