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

com.anwen.mongo.domain.InitMongoCollectionException Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.domain;

/**
 * 初始化连接异常
 * @author JiaChaoYang
 * @date 2024/5/2 上午1:27
 */
public class InitMongoCollectionException extends MongoPlusException {
    private String message;

    @Override
    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public InitMongoCollectionException(String message){
        super(message);
        this.message = message;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy