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

com.data.common.lang.exception.DataAlreadyExistsException Maven / Gradle / Ivy

The newest version!
package com.data.common.lang.exception;

/**
 * 数据已存在
 *
 * @author jidaojiuyou
 */
public class DataAlreadyExistsException extends BaseException {

    /**
     * 无参构造
     */
    public DataAlreadyExistsException() {
        super("数据已存在");
    }

    /**
     * 错误消息构造
     *
     * @param message 错误消息
     */
    public DataAlreadyExistsException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy