This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-package-manager-addon/package_manager/bpkg/exceptions.py
Ellwood Zwovic 2f6357e40e Cleanup: Move package download/install code out of subproc.py
Instead do such things in bpkg, and only handle interfacing between
blender and bpkg in subproc.py
2017-07-26 02:08:01 -07:00

12 lines
420 B
Python

class BpkgException(Exception):
"""Superclass for all package manager exceptions"""
class InstallException(BpkgException):
"""Raised when there is an error during installation"""
class DownloadException(BpkgException):
"""Raised when there is an error downloading something"""
class BadRepositoryException(BpkgException):
"""Raised when there is an error while reading or manipulating a repository"""