
com.netflix.astyanax.recipes.queue.MessageQueueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astyanax-queue Show documentation
Show all versions of astyanax-queue Show documentation
astyanax-queue developed by Netflix
package com.netflix.astyanax.recipes.queue;
public class MessageQueueException extends Exception {
private static final long serialVersionUID = 3917437309288808628L;
public MessageQueueException(String message) {
super(message);
}
public MessageQueueException(Throwable t) {
super(t);
}
public MessageQueueException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy