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

15 lines
336 B
Java

package eirb.pg203.weather.exceptions;
/**
* Exception when an error during the api call
*/
public class WeatherFetchingException extends Exception {
/**
* Weather Fetching exception
* @param message message of the exception
*/
public WeatherFetchingException(String message) {
super(message);
}
}