io.getstream.core.exceptions.StreamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-java Show documentation
Show all versions of stream-java Show documentation
Stream Feeds Java Client for backend and android integrations
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