MCPcopy Create free account
hub / github.com/saltstack/salt / SaltSystemExit

Class SaltSystemExit

salt/exceptions.py:412–419  ·  view source on GitHub ↗

This exception is raised when an unsolvable problem is found. There's nothing else to do, salt should just exit.

Source from the content-addressed store, hash-verified

410
411
412class SaltSystemExit(SystemExit):
413 """
414 This exception is raised when an unsolvable problem is found. There's
415 nothing else to do, salt should just exit.
416 """
417
418 def __init__(self, code=0, msg=None):
419 SystemExit.__init__(self, msg)
420
421
422class SaltCloudException(SaltException):

Callers 8

resolve_dnsFunction · 0.90
gen_modulesMethod · 0.90
dns_checkFunction · 0.90
check_ipc_path_max_lenFunction · 0.90
verify_filesFunction · 0.90
_runMethod · 0.90
post_master_initFunction · 0.90
post_master_initFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected