4 lines
89 B
Python
4 lines
89 B
Python
class FiasException(Exception):
|
|
def __str__(self):
|
|
return repr(self.args[0])
|