Module Values.InternalServerExceptionSource

Error thrown when an internal server error occurs HTTP Status Code: 500 Internal Server Error Used for unexpected server-side errors that prevent request processing.

Sourcetype nonrec t = {
  1. error : OAuth2ErrorCode.t option;
    (*

    OAuth 2.0 error code indicating server error Will be SERVER_ERROR for internal server errors

    *)
  2. message : String_.t option;
    (*

    Detailed message explaining the server error May include error details for debugging purposes

    *)
}
Sourceval make : ?error:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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