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

com.alibaba.tmq.common.exception.DeleteMessageException Maven / Gradle / Ivy

package com.alibaba.tmq.common.exception;

/**
 * Delete Message 异常
 * @author tianyao.myc
 *
 */
public class DeleteMessageException extends RuntimeException {

	private static final long serialVersionUID = 8694880108956999544L;

	public DeleteMessageException() {
		super();
	}
	
	public DeleteMessageException(String message) {
		super(message);
	}
	
	public DeleteMessageException(Throwable error) {
		super(error);
	}
	
	public DeleteMessageException(String message, Throwable error) {
		super(message, error);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy