![JAR search and dependency download from the Maven repository](/logo.png)
com.tecacet.finance.service.currency.ExchangeRateException Maven / Gradle / Ivy
package com.tecacet.finance.service.currency;
/**
* Exception thrown when currency conversion fails
*/
public class ExchangeRateException extends RuntimeException {
public ExchangeRateException(String message) {
super(message);
}
public ExchangeRateException(Throwable t) {
super(t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy