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;
import com.power.common.interfaces.IMessage;
/**
* @author yu 2018/9/28.
*/
public class IPException extends BaseRuntimeException {
public IPException(String message) {
super(message);
}
public IPException(IMessage iMessage) {
super(iMessage);
}
public IPException(IMessage errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy