X-Git-Url: https://pwan.org/git/?p=certmaster.git;a=blobdiff_plain;f=certmaster%2FCommonErrors.py;h=2dfb8146c94f54b5e08080f91c1c25533e5c73d5;hp=c76cb3d4f5079fe49c36625587aa3e4dc003c156;hb=HEAD;hpb=8f2ff4d7c902d534d68ff1a16418b7be492033bf diff --git a/certmaster/CommonErrors.py b/certmaster/CommonErrors.py index c76cb3d..2dfb814 100644 --- a/certmaster/CommonErrors.py +++ b/certmaster/CommonErrors.py @@ -60,10 +60,10 @@ def canIgnoreSocketError(e): return False -class Func_Client_Exception(Exception): +# FIXME: is anything using this? remove underscores +class CertMaster_Client_Exception(Exception): def __init__(self, value=None): Exception.__init__(self) self.value = value def __str__(self): return "%s" %(self.value,) -