Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
dvc-render / exceptions.py
Size: Mime:
class DvcRenderError(Exception):
    pass


class MissingPlaceholderError(DvcRenderError):
    def __init__(self, placeholder, template_type):
        super().__init__(f"{template_type} template has to contain '{placeholder}'.")