Module Values.LimitsExceededExceptionSource

Exception that indicates that the operation would exceed a limit.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
  2. type_ : LimitType.t option;
    (*

    The type of limit that would be exceeded.

    *)
  3. limit : LimitNumber.t option;
    (*

    The threshold that would be exceeded.

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