15 lines
336 B
Java
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);
|
|
}
|
|
}
|