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

com.slack.api.token_rotation.TokenRotationException Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.token_rotation;

import lombok.Data;

@Data
public class TokenRotationException extends Exception {
    private String message;
    private Throwable cause;

    public TokenRotationException(String message) {
        this(message, null);
    }

    public TokenRotationException(String message, Throwable cause) {
        this.message = message;
        this.cause = cause;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy