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

com.power.common.exception.IPException Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package com.power.common.exception;

/**
 * @author yu 2018/9/28.
 */
public class IPException extends RuntimeException {

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy