com.power.common.exception.IPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-util Show documentation
Show all versions of common-util Show documentation
ApplicationPower common-util
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