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
014public final class SubscriberBufferOverflowException extends RuntimeException {
015  public SubscriberBufferOverflowException() {
016  }
017
018  public SubscriberBufferOverflowException(String message) {
019    super(message);
020  }
021
022  public SubscriberBufferOverflowException(String message, Throwable cause) {
023    super(message, cause);
024  }
025
026  public SubscriberBufferOverflowException(Throwable cause) {
027    super(cause);
028  }
029}