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

io.github.dengchen2020.lock.exception.LockException Maven / Gradle / Ivy

The newest version!
package io.github.dengchen2020.lock.exception;

import io.github.dengchen2020.core.exception.call.ViewToastException;

/**
 * 获锁失败异常
 * @author dengchen
 * @since 2024/7/1
 */
public class LockException extends ViewToastException {
    public LockException(String message) {
        super(message);
    }

    public LockException(String message, Boolean alarm) {
        super(message, alarm);
    }

    public LockException(String message, Object... args) {
        super(message, args);
    }

    public LockException(String message, Boolean alarm, Object... args) {
        super(message, alarm, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy