Module File_tail.Error

module Error: sig .. end

type t = 
| File_replaced (*File_shrank occurs if stat detects that the length of the file decreases from one call to the next.*)
| File_shrank (*Read_failed occurs if some aspect of the open-seek-read-close used to get data fails.*)
| Read_failed of exn (*Stat_failed occurs if stat fails.*)
| Stat_failed of exn
val to_string_hum : t -> string
val sexp_of_t : t -> Sexplib.Sexp.t