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

org.cardanofoundation.conversions.ConversionRuntimeException Maven / Gradle / Ivy

package org.cardanofoundation.conversions;

public class ConversionRuntimeException extends RuntimeException {

  public ConversionRuntimeException() {}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy