aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonclient/python_moonclient/core/cli_exceptions.py
blob: 01fd23e055ccfa5d19faaff6dcb753efad73f4a7 (plain)
1
2
3
4
class MoonCliException(Exception):
    def __init__(self, message):
        # Call the base class constructor with the parameters it needs
        super(MoonCliException, self).__init__(message)