Files
python-build/pythonbrew/exceptions.py
T
2011-04-17 20:48:48 +09:00

14 lines
447 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"""