package liquidsoap-lang

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

Module Liquidsoap_lang.Runtime_errorSource

An error at runtime.

Sourcetype runtime_error = private {
  1. kind : string;
  2. msg : string;
  3. pos : Pos.t list;
}
Sourceexception Runtime_error of runtime_error
Sourceval on_error : (runtime_error -> unit) -> unit
Sourceval make : ?message:string -> pos:Pos.t list -> string -> runtime_error
Sourceval raise : ?bt:Printexc.raw_backtrace -> ?message:string -> pos:Pos.t list -> string -> 'a