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

com.tapstream.sdk.errors.RetriesExhaustedException Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package com.tapstream.sdk.errors;


public class RetriesExhaustedException extends ApiException {

    public RetriesExhaustedException() {
    }

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy