package volgo

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Volgo_stdlib.Code_errorSource

A programming error that should be reported upstream

Sourcetype t = {
  1. message : string;
  2. data : (string * Dyn.t) list;
}
Sourceexception E of t
Sourceval raise : string -> (string * Dyn.t) list -> _