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

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

package com.alibaba.tmq.common.exception;

/**
 * Insert Message 异常
 * @author tianyao.myc
 *
 */
public class InsertMessageException extends RuntimeException {

	private static final long serialVersionUID = 6504718902632557966L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy