mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-05 17:53:52 +00:00
19 lines
308 B
Python
19 lines
308 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2019, deadc0de6
|
|
|
|
diverse exceptions
|
|
"""
|
|
|
|
|
|
class YamlException(Exception):
|
|
"""exception in CfgYaml"""
|
|
|
|
|
|
class UndefinedException(Exception):
|
|
"""exception in templating"""
|
|
|
|
|
|
class UnmetDependency(Exception):
|
|
"""unmet dependency"""
|