Liquidsoap_lang.Lang_error
include module type of struct include Runtime_error end
type runtime_error = private Runtime_error.runtime_error = {
kind : string;
msg : string;
pos : Pos.t list;
}
exception Runtime_error of runtime_error
val on_error : (runtime_error -> unit) -> unit
val make : ?message:string -> pos:Pos.t list -> string -> runtime_error
val raise :
?bt:Stdlib.Printexc.raw_backtrace ->
?message:string ->
pos:Pos.t list ->
string ->
'a
exception Encoder_error of Pos.Option.t * string
module ErrorDef : sig ... end
module Error : sig ... end
val error_t : Type.t
val error : Error.content -> Value.t
val to_error : Liquidsoap_lang__Value.t -> Error.content