/usr/share/pyshared/SoftLayer/CLI/exceptions.py is in python-softlayer 3.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | """
SoftLayer.CLI.exceptions
~~~~~~~~~~~~~~~~~~~~~~~~
Exceptions to be used in the CLI modules.
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
:license: MIT, see LICENSE for more details.
"""
class CLIHalt(SystemExit):
def __init__(self, code=0, *args):
super(CLIHalt, self).__init__(*args)
self.code = code
class CLIAbort(CLIHalt):
def __init__(self, msg, *args):
super(CLIAbort, self).__init__(code=2, *args)
self.message = msg
class ArgumentError(CLIAbort):
def __init__(self, msg, *args):
super(CLIAbort, self).__init__(code=2, *args)
self.message = "Argument Error: %s" % msg
|