Files
changedetection.io/changedetectionio/conditions/exceptions.py
T
dgtlmoon beee93d528 WIP
2025-03-14 17:18:48 +01:00

6 lines
212 B
Python

class EmptyConditionRuleRowNotUsable(Exception):
def __init__(self):
super().__init__("One of the 'conditions' rulesets is incomplete, cannot run.")
def __str__(self):
return self.args[0]