All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactivestreams.tck.flow.support.SubscriberBufferOverflowException Maven / Gradle / Ivy

The newest version!
/***************************************************
 * Licensed under MIT No Attribution (SPDX: MIT-0) *
 ***************************************************/

package org.reactivestreams.tck.flow.support;

public final class SubscriberBufferOverflowException extends RuntimeException {
  public SubscriberBufferOverflowException() {
  }

  public SubscriberBufferOverflowException(String message) {
    super(message);
  }

  public SubscriberBufferOverflowException(String message, Throwable cause) {
    super(message, cause);
  }

  public SubscriberBufferOverflowException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy