
com.chain.sequence.exception.ConfigurationException 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;
/**
* ConfigurationException wraps errors during client configuration.
*/
public class ConfigurationException extends ChainException {
/**
* Initializes exception with its message attribute.
* @param message error message
*/
public ConfigurationException(String message) {
super(message);
}
/**
* Initializes new exception while storing original cause.
* @param message the error message
* @param cause the original cause
*/
public ConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy