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

io.lettuce.core.json.RedisJsonException Maven / Gradle / Ivy

Go to download

Advanced and thread-safe Java Redis client for synchronous, asynchronous, and reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs and much more.

The newest version!
/*
 * Copyright 2024, Redis Ltd. and Contributors
 * All rights reserved.
 *
 * Licensed under the MIT License.
 */

package io.lettuce.core.json;

public class RedisJsonException extends RuntimeException {

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy