io.proximax.exceptions.DigestCalculationFailureException 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 digest calculation failed
*/
public class DigestCalculationFailureException extends RuntimeException {
/**
* Create instance of this exception
* @param message the exception message
*/
public DigestCalculationFailureException(String message) {
super(message);
}
/**
* Create instance of this exception
* @param message the exception message
* @param cause the cause of this exception
*/
public DigestCalculationFailureException(String message, Throwable cause) {
super(message, cause);
}
}