libsearpc/pysearpc/errors.py

7 lines
164 B
Python

class NetworkError(Exception):
def __init__(self, msg):
Exception.__init__(self)
self.msg = msg
def __str__(self):
return self.msg