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

com.bol.crypt.DocumentCryptException Maven / Gradle / Ivy

package com.bol.crypt;

public class DocumentCryptException extends RuntimeException {
    Object id;
    String collectionName;

    public DocumentCryptException(String collectionName, Object id, Throwable e) {
        super("Collection: " + collectionName + ", Id: " + id, e);
        this.id = id;
        this.collectionName = collectionName;
    }

    public Object getId() {
        return id;
    }

    public String getCollectionName() {
        return collectionName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy