io.proximax.exceptions.DecryptionFailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-chain-xipfs-sdk Show documentation
Show all versions of java-chain-xipfs-sdk Show documentation
Official ProximaX P2P Storage SDK Library in Java.
The newest version!
package io.proximax.exceptions;
/**
* The exception when a privacy strategy decryption process has failed
*/
public class DecryptionFailureException extends RuntimeException {
/**
* Create instance of this exception
* @param message the exception message
*/
public DecryptionFailureException(String message) {
super(message);
}
/**
* Create instance of this exception
* @param message the exception message
* @param cause the cause of this exception
*/
public DecryptionFailureException(String message, Throwable cause) {
super(message, cause);
}
}