aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonclient/python_moonclient/core/cli_exceptions.py
blob: 2ec2ed186c5263280fa7116cd2216fdf6f3a0b2b (plain)
1
2
3
4
5
6
7
class MoonCliException(Exception):
    def __init__(self, message):

        # Call the base class constructor with the parameters it needs
        super(MoonCliException, self).__init__(message)