shakuhachi.config
SkhcConfig.Err
Operations on errors while parsing a configuration file.
shakuhachi.database
shakuhachi.libs
shakuhachi.metadata
shakuhachi.plugin
shakuhachi.query
shakuhachi.util
type t =
| ParsingError of string
| MissingSection of string
| MissingKey of string
The type of errors appearing while parsing a configuration file.
val parsing_error : string -> t
parsing_error msg creates a ParsingError error with msg.
parsing_error msg
ParsingError
msg
val missing_section : string -> t
missing_section msg creates a MissingSection error with msg.
missing_section msg
MissingSection
val missing_key : string -> t
missing_key msg create a MissingKey error with msg
missing_key msg
MissingKey
val to_string : t -> string
to_string error returns the string representation of error;
to_string error
error