Module Errors.Environment_l

This module contains the type of errors linked to entries in environments.

type t =
  1. | EntryNotFound of string
  2. | NotALexicon of string
  3. | NotASignature of string
  4. | DuplicatedEntry of string
  5. | Other
val kind : string
val pp : Stdlib.Format.formatter -> t -> unit