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

com.github.dreamroute.locker.exception.LockerException Maven / Gradle / Ivy

Go to download

Parent pom providing dependency and plugin management for applications built with Maven

The newest version!
package com.github.dreamroute.locker.exception;

/**
 * 异常
 *
 * @author w.dehi
 */
public class LockerException extends RuntimeException {

    public LockerException() {}

    public LockerException(String message) {
        super(message);
    }

    public LockerException(String message, Throwable cause) {
        super(message, cause);
    }

    public LockerException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy