Module Camlp4.Struct.Lexer.Make.Error


module Error: sig .. end


type t =
| Illegal_character of char
| Illegal_escape of string
| Unterminated_comment
| Unterminated_string
| Unterminated_quotation
| Unterminated_antiquot
| Unterminated_string_in_comment
| Comment_start
| Comment_not_end
| Literal_overflow of string
exception E of t
val print : Format.formatter -> t -> unit
val to_string : t -> string