Page MenuHomeDevCentral

Allow to easily throw error response in ApiJsonResponse<T> methdods
ClosedPublic

Authored by dereckson on Aug 9 2026, 22:41.
Tags
None
Referenced Files
F50907426: D4152.id.diff
Mon, Sep 21, 17:32
Unknown Object (File)
Sat, Sep 19, 21:53
Unknown Object (File)
Sat, Sep 19, 21:50
Unknown Object (File)
Sat, Sep 19, 17:27
Unknown Object (File)
Sat, Sep 19, 11:17
Unknown Object (File)
Sat, Sep 19, 07:33
Unknown Object (File)
Thu, Sep 17, 17:40
Unknown Object (File)
Thu, Sep 17, 08:25
Subscribers
None

Details

Summary

While StatusCode can already be parsed as a response,
it's not always easy to propagate the correct Ok() signature
in a method that only returns errors.

Throw the error variant is trivial, but verbose so an helper method
error_response(status_code, error_message) can be helpful to keep
code easy to read and maintain.

Expected use:

if ... {
    return error_response(StatusCode::..., "...");
}
Test Plan

Tested with Alkane HTTP API server code.

Diff Detail

Repository
rLF Limiting Factor
Lint
Lint Not Applicable
Unit
Tests Not Applicable