001package org.reactivestreams.tck.support; 002 003public final class SubscriberBufferOverflowException extends RuntimeException { 004 public SubscriberBufferOverflowException() { 005 } 006 007 public SubscriberBufferOverflowException(String message) { 008 super(message); 009 } 010 011 public SubscriberBufferOverflowException(String message, Throwable cause) { 012 super(message, cause); 013 } 014 015 public SubscriberBufferOverflowException(Throwable cause) { 016 super(cause); 017 } 018}