NAME

clearerr - clear any error conditions on the given file

SYNOPSIS

file.clearerr()

DESCRIPTION

If there are any error or end-of-file conditions attached to file, clearerr() will clear them. This makes it easier to isolate particular operations that cause an error.

RETURN VALUE

None

ERRORS

ArgCheck if arguments are specified
TypeCheck if file is not a File
AccessCheck if file has been closed

EXAMPLE

        io::Input.clearerr()

SEE ALSO

ferror
feof