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.6.1
Show newest version
package com.anwen.mongo.domain;

/**
 * @Description: 初始化连接异常
 * @BelongsProject: mongo
 * @BelongsPackage: com.anwen.mongo.domain
 * @Author: JiaChaoYang
 * @CreateTime: 2023-02-18 15:09
 * @Version: 1.0
 */
public class InitMongoCollectionException extends RuntimeException {
    private String message;

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

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

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

    public InitMongoCollectionException(){
        super();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy