blob: c5583d3019e65a2f846f2f2db49c8ea8c538bbac (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""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."""
|