Files
tyx_AI_xhs/apps/api/src/sticker-release-errors.ts
T
suyx c92a91a127
Dada P0-A isolated Windows CI / validate-and-package (push) Failing after 30s
feat: publish admin sticker releases (TASK-WP5-05)
2026-08-03 19:43:10 +08:00

9 lines
199 B
TypeScript

export class StickerReleaseError extends Error {
readonly httpStatus: number;
constructor(readonly reason: string, httpStatus = 400) {
super(reason);
this.httpStatus = httpStatus;
}
}