mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 09:17:53 +00:00
11 lines
266 B
Python
11 lines
266 B
Python
"""Errors for scaffolding."""
|
|
|
|
|
|
class ExitApp(Exception):
|
|
"""Exception to indicate app should exit."""
|
|
|
|
def __init__(self, reason, exit_code=1):
|
|
"""Initialize the exit app exception."""
|
|
self.reason = reason
|
|
self.exit_code = exit_code
|