fix(httpapi): add unknown error references (#28629)

This commit is contained in:
Shoubhit Dash 2026-05-21 15:44:35 +05:30 committed by GitHub
commit fc08292136
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 13 deletions

View file

@ -65,5 +65,6 @@ export abstract class NamedError extends Error {
public static readonly Unknown = NamedError.create("UnknownError", {
message: Schema.String,
ref: Schema.optional(Schema.String),
})
}