Module Values.EphemerisErrorReasonSource

Detailed error information for ephemeris validation failures. Provides an error code and descriptive message to help diagnose and resolve validation issues.

Sourcetype nonrec t = {
  1. errorCode : EphemerisErrorCode.t option;
    (*

    The error code identifying the type of validation failure. See the Troubleshooting Invalid Ephemerides guide for error code details.

    *)
  2. errorMessage : ErrorString.t option;
    (*

    A human-readable message describing the validation failure. Provides specific details about what failed and may include suggestions for remediation.

    *)
}
Sourceval make : ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ErrorString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t