Module Values.InternalServerExceptionSource

The server encountered an unexpected condition that prevented it from fulfilling the request.

Sourcetype nonrec t = {
  1. message : LargeBoundedString.t option;
  2. retryAfterSeconds : PositiveInteger.t option;
    (*

    The server encountered an unexpected condition that prevented it from fulfilling the request. The request will be retried again after x seconds.

    *)
}
Sourceval make : ?message:??? -> ?retryAfterSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PositiveInteger.t | `String of LargeBoundedString.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