
com.chain.sequence.exception.ChainException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sequence-sdk Show documentation
Show all versions of sequence-sdk Show documentation
The Official Java SDK for Chain Core Developer Edition
The newest version!
package com.chain.sequence.exception;
/**
* Base exception class for the Sequence SDK.
*/
public class ChainException extends Exception {
public ChainException() {
super();
}
public ChainException(String message) {
super(message);
}
public ChainException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy