7 lines
115 B
Python
7 lines
115 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class FiasException(Exception):
|
|
def __str__(self):
|
|
return repr(self.args[0])
|