mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-05 16:08:54 +00:00
17 lines
263 B
Python
17 lines
263 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2019, deadc0de6
|
|
|
|
diverse exceptions
|
|
"""
|
|
|
|
|
|
class YamlException(Exception):
|
|
"""exception in CfgYaml"""
|
|
pass
|
|
|
|
|
|
class UndefinedException(Exception):
|
|
"""exception in templating"""
|
|
pass
|