这个模块定义了与 HTTP 操作相关的异常。
Types
HttpError = object of CatchableError code*: range[Http400 .. Http505]
- 表示与 HTTP 协议相关的错误。 Source Edit
ReadAbortedError = object of CatchableError
- 读操作在完成前被中断。 Source Edit
WriteAbortedError = object of CatchableError
- 写操作在完成前被中断。 Source Edit
Procs
proc newHttpError(code: range[Http400 .. Http505]; parentException: ref Exception = nil): ref HttpError {...}{.raises: [], tags: [].}
- 创建一个 ref HttpError. Source Edit
proc newHttpError(code: range[Http400 .. Http505]; msg: string; parentException: ref Exception = nil): ref HttpError {...}{.raises: [], tags: [].}
- 创建一个 ref HttpError. Source Edit