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

com.zcj.util.exception.ZutilException Maven / Gradle / Ivy

package com.zcj.util.exception;

public class ZutilException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public ZutilException() {
        super();
    }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy