1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 17:26:15 +02:00
github.com_openSUSE_osc/osc/oscsslexcp.py

9 lines
183 B
Python
Raw Normal View History

class NoSecureSSLError(Exception):
def __init__(self, msg):
2010-02-27 20:11:15 +01:00
Exception.__init__(self)
self.msg = msg
def __str__(self):
return self.msg
# vim: sw=4 et