org.reactivestreams.tck.support.TestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactive-streams-tck Show documentation
Show all versions of reactive-streams-tck Show documentation
A Protocol for Asynchronous Non-Blocking Data Sequence
/************************************************************************
* Licensed under Public Domain (CC0) *
* *
* To the extent possible under law, the person who associated CC0 with *
* this code has waived all copyright and related or neighboring *
* rights to this code. *
* *
* You should have received a copy of the CC0 legalcode along with this *
* work. If not, see .*
************************************************************************/
package org.reactivestreams.tck.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