class DirectoryNotFound(Exception):
    def __init__(self, dir_name):
        message = "Directory could not be found: {}".format(dir_name)
        super(DirectoryNotFound, self).__init__(message)