mirror of
https://github.com/vladmandic/sdnext.git
synced 2026-01-27 15:02:48 +03:00
4 lines
99 B
Python
4 lines
99 B
Python
class PDHError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|