mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-01 15:20:33 +00:00
6 lines
212 B
Python
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] |