Exceptions: added AutoRasterSampleSkipped for automation

This commit is contained in:
2026-05-08 13:10:20 +02:00
parent c31a60fb1c
commit 5d60ebf4ef
+4
View File
@@ -35,6 +35,10 @@ class RasterScanException(Exception):
return self.message
class AutoRasterSampleSkipped(Exception):
"""Raised when automation should skip the current sample because auto-raster is too large."""
class LoopCenteringFailed(Exception):
def __init__(self, message: str = "Loop Centering did not detect a sample"):
super().__init__(message)