- bump version to 0.130.1
[opensuse:osc.git] / osc / oscsslexcp.py
1 class NoSecureSSLError(Exception):
2     def __init__(self, msg):
3         Exception.__init__(self)
4         self.msg = msg
5     def __str__(self):
6         return self.msg
7
8 # vim: sw=4 et