com.feingto.iot.common.exception.ServiceException Maven / Gradle / Ivy
package com.feingto.iot.common.exception;
/**
* Service exception
*
* @author longfei
*/
public class ServiceException extends RuntimeException {
private static final long serialVersionUID = -7045300372762097375L;
public ServiceException() {
super();
}
public ServiceException(String message) {
super(message);
}
public ServiceException(Throwable cause) {
super(cause);
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy