Module Cobol_config.Diagnostics

type error =
  1. | Invalid_key_value_pair of string * Cobol_config__.Conf_ast.value
  2. | Lexing_error of Cobol_config__.Conf_lexer.error
  3. | Syntax_error of Cobol_common.Srcloc.srcloc option * string option
  4. | Unknown_dialect of string
  5. | Missing_file of string * string list
val pp_error : Stdlib.Format.formatter -> error -> unit