001/***************************************************
002 * Licensed under MIT No Attribution (SPDX: MIT-0) *
003 ***************************************************/
004
005package org.reactivestreams.tck.flow.support;
006
007public final class SubscriberBufferOverflowException extends RuntimeException {
008  public SubscriberBufferOverflowException() {
009  }
010
011  public SubscriberBufferOverflowException(String message) {
012    super(message);
013  }
014
015  public SubscriberBufferOverflowException(String message, Throwable cause) {
016    super(message, cause);
017  }
018
019  public SubscriberBufferOverflowException(Throwable cause) {
020    super(cause);
021  }
022}