From b966e7cc010bc603c4e716d1746a8a38f91789b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20L=C3=A4ssig?= Date: Fri, 1 Jul 2016 18:57:41 +0200 Subject: [PATCH] remove unused Exception (got from copy'n'paste) --- check-systemd-service | 6 ------ 1 file changed, 6 deletions(-) diff --git a/check-systemd-service b/check-systemd-service index 9b02669..144e955 100755 --- a/check-systemd-service +++ b/check-systemd-service @@ -21,12 +21,6 @@ except ImportError as e: _log = logging.getLogger('nagiosplugin') -class E_MyException(Exception): - def __init__(self, value): - self.value = value - def __str__(self): - return "do some things with value %r" %repr(self.value) - class Systemd_Service(nagiosplugin.Resource): """One Systemd Service"""