Module Geojsonm.Err

type location = (int * int) * (int * int)
type t = [
| `Error of location * Jsonm.error
| `EOI
| `Unexpected of string
]
val pp : Stdlib.Format.formatter -> t -> unit