From a09995697405068cf86ae14769752cc1b288df4e Mon Sep 17 00:00:00 2001 From: Hal Simpson <hasimpson@usgs.gov> Date: Thu, 2 Apr 2015 23:59:32 -0600 Subject: [PATCH] Added exception class for Algorithms --- geomagio/AlgorithmException.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 geomagio/AlgorithmException.py diff --git a/geomagio/AlgorithmException.py b/geomagio/AlgorithmException.py new file mode 100644 index 00000000..cb27283d --- /dev/null +++ b/geomagio/AlgorithmException.py @@ -0,0 +1,8 @@ +""" +Base class for exceptions thrown by Algorithms. +""" + + +class AlgorithmException(Exception): + """Base class for exceptions thrown by Algorithms.""" + pass -- GitLab