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