com.power.common.exception.DistributedLockException 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;
/**
* DistributedLockException
*
* @author yu 2020/10/20.
*/
public class DistributedLockException extends BaseRuntimeException {
public DistributedLockException(String msg) {
super(msg);
}
public DistributedLockException(IMessage iMessage) {
super(iMessage);
}
public DistributedLockException(IMessage errorCode, String errorMessage) {
super(errorCode, errorMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy