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

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

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

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

	public SmqRuntimeException() {
	}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy