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

io.getstream.core.exceptions.StreamException Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.getstream.core.exceptions;

public class StreamException extends Exception {
  public StreamException() {
    super();
  }

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

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

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

  protected StreamException(
      String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy