Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
python-docx / docx / opc / exceptions.py
Size: Mime:
# 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.
    """