diff --git a/plugin.video.alfa/platformcode/logger.py b/plugin.video.alfa/platformcode/logger.py index 7008407a..10741580 100644 --- a/plugin.video.alfa/platformcode/logger.py +++ b/plugin.video.alfa/platformcode/logger.py @@ -76,3 +76,8 @@ def error(texto=""): xbmc.log("######## ERROR #########", xbmc.LOGERROR) xbmc.log(texto, xbmc.LOGERROR) + + +class WebErrorException(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs)