All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chain.exception.ChainException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.chain.exception;

/**
 * Base exception class for the Chain Core SDK.
 */
public class ChainException extends Exception {
  /**
   * Default constructor.
   */
  public ChainException() {
    super();
  }

  /**
   * Initializes exception with its message attribute.
   * @param message error message
   */
  public ChainException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy