com.bloxbean.cardano.client.crypto.exception.KeyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-crypto Show documentation
Show all versions of cardano-client-crypto Show documentation
Cardano Client Lib - Crypto Implementations
package com.bloxbean.cardano.client.crypto.exception;
public class KeyException extends RuntimeException {
public KeyException(String message) {
super(message);
}
public KeyException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy