mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
17 lines
526 B
Python
17 lines
526 B
Python
|
|
class BuildingException(Exception):
|
|
"""General exception during building"""
|
|
|
|
class ShellCommandException(Exception):
|
|
"""General exception during shell command"""
|
|
|
|
class UnknownVersionException(Exception):
|
|
"""General exception during installing"""
|
|
class AlreadyInstalledException(Exception):
|
|
"""General exception during installing"""
|
|
class NotSupportedVersionException(Exception):
|
|
"""General exception during installing"""
|
|
|
|
class CurlFetchException(Exception):
|
|
"""Exception curl during fetching"""
|