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

com.github.dreamroute.locker.exception.DataHasBeenModifyException 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.2022-01-09
 */
public class DataHasBeenModifyException extends RuntimeException{

    public DataHasBeenModifyException() {}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy