com.github.dreamroute.locker.exception.DataHasBeenModifyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of locker-spring-boot-starter Show documentation
Show all versions of locker-spring-boot-starter Show documentation
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