From 01c607cc67320b80397d08d379baad75ba700a94 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 14 Feb 2018 06:42:12 +0545 Subject: [PATCH] core: remove unused SecurityError. --- mitogen/core.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mitogen/core.py b/mitogen/core.py index e84c6794..1b716bab 100644 --- a/mitogen/core.py +++ b/mitogen/core.py @@ -83,10 +83,6 @@ class Error(Exception): Exception.__init__(self, fmt) -class SecurityError(Error): - pass - - class CallError(Error): def __init__(self, e): s = '%s.%s: %s' % (type(e).__module__, type(e).__name__, e)