mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-05 20:48:00 +00:00
27 lines
467 B
Python
27 lines
467 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2019, deadc0de6
|
|
|
|
diverse exceptions
|
|
"""
|
|
|
|
|
|
class YamlException(Exception):
|
|
"""exception in CfgYaml"""
|
|
|
|
|
|
class ConfigException(Exception):
|
|
"""exception in config parsing/aggregation"""
|
|
|
|
|
|
class OptionsException(Exception):
|
|
"""dotdrop options exception"""
|
|
|
|
|
|
class UndefinedException(Exception):
|
|
"""exception in templating"""
|
|
|
|
|
|
class UnmetDependency(Exception):
|
|
"""unmet dependency"""
|