From e51b7de1e0359eeb392e403f507b4b470215ab88 Mon Sep 17 00:00:00 2001 From: Martin Eyben Date: Mon, 18 Nov 2024 21:49:58 +0100 Subject: [PATCH] feat(exception): add weather exception --- .../eirb/pg203/exceptions/WeatherFetchingException.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/java/eirb/pg203/exceptions/WeatherFetchingException.java diff --git a/src/main/java/eirb/pg203/exceptions/WeatherFetchingException.java b/src/main/java/eirb/pg203/exceptions/WeatherFetchingException.java new file mode 100644 index 0000000..4e21982 --- /dev/null +++ b/src/main/java/eirb/pg203/exceptions/WeatherFetchingException.java @@ -0,0 +1,7 @@ +package eirb.pg203.exceptions; + +public class WeatherFetchingException extends Exception { + public WeatherFetchingException(String message) { + super(message); + } +}