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

io.growing.sdk.java.exception.GIOMessageException Maven / Gradle / Ivy

package io.growing.sdk.java.exception;

/**
 * @author : tong.wang
 * @version : 1.0.0
 * @since : 11/21/18 7:58 PM
 */
public class GIOMessageException extends RuntimeException {
    private static final long serialVersionUID = 5009965954277376931L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy