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

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

The newest version!
package io.getstream.client.exception;

/**
 * In case the URI built is invalid.
 */
public class UriBuilderException extends RuntimeException {
    public UriBuilderException() {
        super();
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy