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

cn.acyou.leo.framework.exception.ModifiedByAnotherUserException Maven / Gradle / Ivy

package cn.acyou.leo.framework.exception;

/**
 * 乐观锁检查:"页面内容过期了,请刷新页面后再继续操作!"
 * @author youfang
 * @version [1.0.0, 2020/8/5]
 **/
public class ModifiedByAnotherUserException extends RuntimeException{
    /**
     * Constructs a new runtime exception with {@code null} as its
     * detail message.  The cause is not initialized, and may subsequently be
     * initialized by a call to {@link #initCause}.
     */
    public ModifiedByAnotherUserException() {
        super();
    }

    /**
     * Constructs a new runtime exception with the specified detail message.
     * The cause is not initialized, and may subsequently be initialized by a
     * call to {@link #initCause}.
     *
     * @param message the detail message. The detail message is saved for
     *                later retrieval by the {@link #getMessage()} method.
     */
    public ModifiedByAnotherUserException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy