class ComposeFileNotFound(DipError):
    """ No docker-compose file found. """
    def __init__(self, path):
        super(ComposeFileNotFound, self).__init__(
            "No compose file found in '{path}'".format(path=path))