io.proximax.sdk.model.transaction.MessagePayloadDecodeFailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-xpx-chain-sdk Show documentation
Show all versions of java-xpx-chain-sdk Show documentation
The ProximaX Sirius Chain Java SDK is a Java library for interacting with the Sirius Blockchain.
The newest version!
package io.proximax.sdk.model.transaction;
/**
* The exception when the decoding message payload has failed
*/
public class MessagePayloadDecodeFailureException extends RuntimeException {
/**
* Create instance of this exception
*
* @param message the exception message
*/
public MessagePayloadDecodeFailureException(String message) {
super(message);
}
/**
* Create instance of this exception
*
* @param message the exception message
* @param cause the cause of this exception
*/
public MessagePayloadDecodeFailureException(String message, Throwable cause) {
super(message, cause);
}
}