15 lines
220 B
Python
15 lines
220 B
Python
import abc
|
|
|
|
|
|
class Error(object):
|
|
|
|
@abc.abstractmethod
|
|
def error(self):
|
|
"""Creates an error message
|
|
|
|
:returns: The error message
|
|
:rtype: str
|
|
"""
|
|
|
|
raise NotImplementedError
|