You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
302 B
Python
20 lines
302 B
Python
3 weeks ago
|
# encoding: utf-8
|
||
|
|
||
|
"""
|
||
|
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.
|
||
|
"""
|