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

gu.simplemq.exceptions.SmqNotFoundConnectionException Maven / Gradle / Ivy

There is a newer version: 2.3.17
Show newest version
package gu.simplemq.exceptions;

/**
 * 没有找到有效的消息系统服务异常
 * @author guyadong
 */
public class SmqNotFoundConnectionException extends SmqException {

	private static final long serialVersionUID = 1L;

	public SmqNotFoundConnectionException() {
	}

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

	public SmqNotFoundConnectionException(Throwable cause) {
		super(cause);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy