Repository URL to install this package:
|
Version:
1.0.2 ▾
|
dvc-render
/
exceptions.py
|
|---|
class DvcRenderError(Exception):
pass
class MissingPlaceholderError(DvcRenderError):
def __init__(self, placeholder, template_type):
super().__init__(f"{template_type} template has to contain '{placeholder}'.")