tw.yukina.notion.sdk.client.api.exception.NotionRateLimitedException Maven / Gradle / Ivy
package tw.yukina.notion.sdk.client.api.exception;
import com.fasterxml.jackson.databind.node.ObjectNode;
import lombok.ToString;
import org.jetbrains.annotations.NotNull;
import tw.yukina.notion.sdk.endpoint.exception.NotionAPIException;
@ToString(callSuper = true)
public class NotionRateLimitedException extends NotionAPIException {
public NotionRateLimitedException(@NotNull ObjectNode errorObject) {
super(errorObject);
}
public NotionRateLimitedException(String message) {
super(message);
}
}