13 lines
264 B
Python
Raw Permalink Normal View History

2025-07-16 15:34:54 +08:00
"""Exceptions specific to python-opc.
The base exception class is OpcError.
"""
class OpcError(Exception):
"""Base error class for python-opc."""
class PackageNotFoundError(OpcError):
"""Raised when a package cannot be found at the specified path."""