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

com.bloxbean.cardano.client.exception.CborRuntimeException Maven / Gradle / Ivy

The newest version!
package com.bloxbean.cardano.client.exception;

public class CborRuntimeException extends RuntimeException {
    public CborRuntimeException(String message) {
        super(message);
    }

    public CborRuntimeException(String message, Exception e) {
        super(message, e);
    }

    public CborRuntimeException(Exception e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy