much more pep8
[mygpo.git] / mygpo / api / exceptions.py
blob145763fbdddca108d44f1dfa14040d11f5439f90
2 class ParameterMissing(Exception):
3 def __init__(self, value):
4 self.value = value
6 def __str__(self):
7 return repr(self.value)