org.interledger.crypto.EncryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-crypto Show documentation
Show all versions of connector-crypto Show documentation
Encryption, decryption, signing and verification services using various underlying key-stores.
The newest version!
package org.interledger.crypto;
public class EncryptionException extends CryptoException {
public EncryptionException() {
}
public EncryptionException(String message) {
super(message);
}
public EncryptionException(String message, Throwable cause) {
super(message, cause);
}
public EncryptionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy