weather-aggregator/src/main/java/eirb/pg203/weather/exceptions/WeatherFetchingExceptionApi.java
2024-12-02 10:07:16 +00:00

8 lines
253 B
Java

package eirb.pg203.weather.exceptions;
public class WeatherFetchingExceptionApi extends eirb.pg203.weather.exceptions.WeatherFetchingException {
public WeatherFetchingExceptionApi() {
super("An error occurred during API fetching");
}
}