class FileNotFound(Exception):
    def __init__(self, file_name):
        message = "File could not be found: {}".format(file_name)
        super(FileNotFound, self).__init__(message)