com.bloxbean.cardano.client.exception.CborDeserializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common Show documentation
Show all versions of cardano-client-common Show documentation
Cardano Client Lib - Common Module
The newest version!
package com.bloxbean.cardano.client.exception;
public class CborDeserializationException extends Exception {
public CborDeserializationException(String message) {
super(message);
}
public CborDeserializationException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy