gpclarity 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,46 @@
1
+ """
2
+ Custom exceptions for GPClarity.
3
+ """
4
+
5
+
6
+ class GPClarityError(Exception):
7
+ """Base exception for all GPClarity errors."""
8
+ pass
9
+
10
+
11
+ class InfluenceError(GPClarityError):
12
+ """Raised when influence computation fails."""
13
+ pass
14
+
15
+
16
+ class KernelError(GPClarityError):
17
+ """Raised when kernel operations fail."""
18
+ pass
19
+
20
+
21
+ class ModelError(GPClarityError):
22
+ """Raised when model validation fails."""
23
+ pass
24
+
25
+ class TrackingError(GPClarityError):
26
+ """Raised when parameter tracking fails."""
27
+ pass
28
+
29
+
30
+ class OptimizationError(GPClarityError):
31
+ """Raised when optimization fails."""
32
+ pass
33
+
34
+
35
+ class KernelError(GPClarityError):
36
+ """Raised when kernel operations or interpretation fails."""
37
+ pass
38
+
39
+
40
+ class ComplexityError(GPClarityError):
41
+ """Raised when complexity computation or analysis fails."""
42
+ pass
43
+
44
+ class UncertaintyError(GPClarityError):
45
+ """Raised when uncertainty quantification or analysis fails."""
46
+ pass