[docs]classStopExecution(Exception):'''used to stop action Execution'''
[docs]classStopBlock(Exception):'''used to stop the block Execution'''
[docs]classInvalidStrings(Exception):'''raised when the given strings argument is invalid'''def__init__(self,msg:str):self.msg=msgdef__str__(self):returnf"StringConig should be FilePath or Dict[str, Dict[LANGUAGE_CODE, str]], not {self.msg}"