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

com.netflix.astyanax.recipes.queue.KeyExistsException Maven / Gradle / Ivy

The newest version!
package com.netflix.astyanax.recipes.queue;

public class KeyExistsException extends MessageQueueException {
    private static final long serialVersionUID = 3917437309288808628L;

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

    public KeyExistsException(Throwable t) {
        super(t);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy