From ce39fa558d4bef86c8dd73b744d78592f2bb9613 Mon Sep 17 00:00:00 2001 From: Lukas Plank Date: Wed, 30 Oct 2024 13:15:47 +0100 Subject: [PATCH] refactor(exceptions): remove unused exceptions Closes #124. --- rdfproxy/utils/_exceptions.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/rdfproxy/utils/_exceptions.py b/rdfproxy/utils/_exceptions.py index ff80a6b..612214b 100644 --- a/rdfproxy/utils/_exceptions.py +++ b/rdfproxy/utils/_exceptions.py @@ -1,14 +1,6 @@ """Custom exceptions for RDFProxy.""" -class UndefinedBindingException(KeyError): - """Exception for indicating that a requested key could not be retrieved from a SPARQL binding mapping.""" - - -class InterdependentParametersException(Exception): - """Exceptiono for indicating that two or more parameters are interdependent.""" - - class MissingModelConfigException(Exception): """Exception for indicating that an expected Config class is missing in a Pydantic model definition."""