001/************************************************************************
002 * Licensed under Public Domain (CC0)                                    *
003 *                                                                       *
004 * To the extent possible under law, the person who associated CC0 with  *
005 * this code has waived all copyright and related or neighboring         *
006 * rights to this code.                                                  *
007 *                                                                       *
008 * You should have received a copy of the CC0 legalcode along with this  *
009 * work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
010 ************************************************************************/
011
012package org.reactivestreams.tck.flow.support;
013
014/**
015 * Exception used by the TCK to signal failures.
016 * May be thrown or signalled through {@link org.reactivestreams.Subscriber#onError(Throwable)}.
017 */
018public final class TestException extends RuntimeException {
019  public TestException() {
020    super("Test Exception: Boom!");
021  }
022}