sig
  type t = {
    message : string;
    filename : string option;
    line : string option;
    lineno : int;
    colno : int;
  }
  exception Message of SpiderCaml.Error.t
  exception RuntimeDestroyed
  exception InvalidRuntime
  exception InvalidType
end