Template
1
0

feat: update tests

This commit is contained in:
2025-04-18 21:22:49 +00:00
parent 7df57522d2
commit 74ab1644d6
10 changed files with 372 additions and 294 deletions

View File

@@ -7,7 +7,11 @@ export abstract class RelayError<D = unknown> extends Error {
super(message);
}
toJSON() {
toJSON(): {
status: number;
message: string;
data: any;
} {
return {
status: this.status,
message: this.message,