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

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

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

/**
 * @author guyadong
 *
 */
public class SmqException extends Exception {
	private static final long serialVersionUID = 1L;

	public SmqException() {
	}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy