Files
deb-python-dcos/dcos/errors.py
2015-01-21 17:42:52 +00:00

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