remove unnecessary imports
[mygpo.git] / mygpo / exceptions.py
blobaa1fa7c10244a257f6d0183782e280bdcff7640d
2 class ParameterMissing(Exception):
3 def __init__(self, value):
4 self.value = value
6 def __str__(self):
7 return repr(self.value)