2016-12-04 16:23:44 +01:00
|
|
|
"""Collection of all exceptions raised by this tool"""
|
|
|
|
|
|
|
|
class BaseError(Exception):
|
|
|
|
"""Base class for all exceptions generated by this tool"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class ModuleLoadError(BaseError):
|
|
|
|
"""Raised whenever loading a module fails"""
|
|
|
|
pass
|
|
|
|
|
2016-12-08 09:44:05 +01:00
|
|
|
class ThemeLoadError(BaseError):
|
|
|
|
"""Raised whenever loading a theme fails"""
|
|
|
|
pass
|
|
|
|
|
2016-12-04 16:23:44 +01:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|