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

io.getstream.client.exception.InvalidFeedNameException Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package io.getstream.client.exception;

/**
 * Exception returned in case the feed slug or the feed id are
 * not valid.ß
 */
public class InvalidFeedNameException extends StreamClientException {

    public InvalidFeedNameException() {
    }

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

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

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

    public InvalidFeedNameException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy