com.seq.exception.ChainException Maven / Gradle / Ivy
package com.seq.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