com.chain.sequence.exception.ChainException Maven / Gradle / Ivy
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 - 2024 Weber Informatics LLC | Privacy Policy