mirror of
https://github.com/vladmandic/automatic
synced 2026-08-28 16:11:02 +02:00
4 lines
99 B
Python
4 lines
99 B
Python
class PDHError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|