Source code for utility_modules.exceptions.year_exceptions
#!/usr/bin/env python
[docs]class YearException(Exception):
def __init__(self, value):
self.value=value
def __str__(self):
return repr(self.value)
#!/usr/bin/env python
[docs]class YearException(Exception):
def __init__(self, value):
self.value=value
def __str__(self):
return repr(self.value)