gu.simplemq.exceptions.SmqException Maven / Gradle / Ivy
The 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