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

com.feingto.iot.common.exception.ServiceException Maven / Gradle / Ivy

There is a newer version: 2.3.3.RELEASE
Show newest version
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