Files
board-mate/rpi/models/exceptions/ServiceException.py
2026-01-01 03:18:19 +01:00

4 lines
137 B
Python

class ServiceException(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)