From 7c9913f5c294f2618f57b374a3bc9293baf5d824 Mon Sep 17 00:00:00 2001 From: josidd <joseph.siddons@noc.ac.uk> Date: Tue, 15 Oct 2024 07:47:30 +0100 Subject: [PATCH] feat: add DateWarning class --- GeoSpatialTools/utils.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GeoSpatialTools/utils.py b/GeoSpatialTools/utils.py index 3b49497..2af13f6 100644 --- a/GeoSpatialTools/utils.py +++ b/GeoSpatialTools/utils.py @@ -2,3 +2,9 @@ class LatitudeError(ValueError): """Error for invalid Latitude Value""" pass + + +class DateWarning(Warning): + """Warnning for Datetime Value""" + + pass -- GitLab