This exception is raised when an unsolvable problem is found. There's nothing else to do, salt should just exit.
| 410 | |
| 411 | |
| 412 | class 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 | |
| 422 | class SaltCloudException(SaltException): |
no outgoing calls
no test coverage detected