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

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

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