1 package com.atlassian.messagequeue;
2
3 import com.atlassian.annotations.PublicApi;
4
5 /**
6 * Thrown to indicate an error when acknowledging a message.
7 *
8 * @since 1.0
9 */
10 @PublicApi
11 public class MessageAcknowledgementException extends MessageRunnerServiceException {
12 /**
13 * Constructs a new instance of message acknowledgement exception.
14 *
15 * @param message the message
16 * @param cause the cause
17 */
18 public MessageAcknowledgementException(String message, Throwable cause) {
19 super(message, cause);
20 }
21 }