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/bpackage/exceptions.py
gandalf3 bbc1c8b3bf Rename "blenderpack" module to "bpackage"
Also split code into files by class
2017-07-06 22:58:17 -07:00

15 lines
370 B
Python

class BadAddon(Exception):
"""
Raised when something expected to be an addon turns out not to be one after all
"""
class RepositoryListError(ValueError):
"""
Raised when something is amiss with the repo.json file
"""
class RepositoryNotFoundError(RepositoryListError):
"""
Raised when looking for a repository which isn't there
"""