mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
9 lines
183 B
Python
9 lines
183 B
Python
class NoSecureSSLError(Exception):
|
|
def __init__(self, msg):
|
|
Exception.__init__(self)
|
|
self.msg = msg
|
|
def __str__(self):
|
|
return self.msg
|
|
|
|
# vim: sw=4 et
|