mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 22:56:15 +01:00
8 lines
153 B
Python
8 lines
153 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
class NoSecureSSLError(Exception):
|
||
|
def __init__(self, msg):
|
||
|
self.msg = msg
|
||
|
def __str__(self):
|
||
|
return self.msg
|