8 lines
253 B
Java
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");
|
|
}
|
|
}
|