com.tozny.e3db.E3DBDecryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of e3db-client-plain Show documentation
Show all versions of e3db-client-plain Show documentation
An SDK to interact with TozStore Encrypted Storage
package com.tozny.e3db;
public class E3DBDecryptionException extends E3DBCryptoException {
public E3DBDecryptionException(String message) {
super("Failure with decryption: " + message);
}
public E3DBDecryptionException(String message, Throwable e) {
super("Failure with decryption: " + message, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy