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

org.fisco.bcos.web3j.crypto.CipherException Maven / Gradle / Ivy

package org.fisco.bcos.web3j.crypto;

/** Cipher exception wrapper. */
public class CipherException extends Exception {

  public CipherException(String message) {
    super(message);
  }

  public CipherException(Throwable cause) {
    super(cause);
  }

  public CipherException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy