mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-11 07:06:16 +01:00
11 lines
202 B
Python
11 lines
202 B
Python
#!/usr/bin/python
|
|
|
|
class NoSecureSSLError(Exception):
|
|
def __init__(self, msg):
|
|
Exception.__init__(self)
|
|
self.msg = msg
|
|
def __str__(self):
|
|
return self.msg
|
|
|
|
# vim: sw=4 et
|