sig
  type error =
      Illegal_escape of char
    | Unknown_error of exn
    | Nothing_to_download
    | Curl_error of int
    | Unexpected_char of string * char * int * int
    | Bad_marshalled_data of string
    | Unknown_command of string
    | Unexpected_expression of string
    | Error_in_configuration_file of string
    | Missing_configuration_item of string
    | Parsing_error of string * int * int
  exception Error of Benl_error.error
  val string_of_error : Benl_error.error -> string
  val raise : Benl_error.error -> 'a
end