feat(exception): add weather exception

This commit is contained in:
Martin Eyben 2024-11-18 21:49:58 +01:00
parent bb8ceff5ea
commit e51b7de1e0

View File

@ -0,0 +1,7 @@
package eirb.pg203.exceptions;
public class WeatherFetchingException extends Exception {
public WeatherFetchingException(String message) {
super(message);
}
}