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); } }