fix error
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Failing after 34s
Deploy Website / docker (ubuntu-latest) (push) Failing after 32s

This commit is contained in:
Lee
2024-10-25 21:32:59 +01:00
parent 97fba47fd8
commit f20d83a436
6 changed files with 7 additions and 7 deletions

View File

@ -0,0 +1,10 @@
import { HttpCode } from "backend/src/common/http-codes";
export class InternalServerError extends Error {
constructor(
public message: string = "internal-server-error",
public status: number = HttpCode.INTERNAL_SERVER_ERROR.code
) {
super(message);
}
}

View File

@ -0,0 +1,10 @@
import { HttpCode } from "backend/src/common/http-codes";
export class NotFoundError extends Error {
constructor(
public message: string = "not-found",
public status: number = HttpCode.NOT_FOUND.code
) {
super(message);
}
}

View File

@ -0,0 +1,10 @@
import { HttpCode } from "backend/src/common/http-codes";
export class RateLimitError extends Error {
constructor(
public message: string = "rate-limited",
public status: number = HttpCode.TOO_MANY_REQUESTS.code
) {
super(message);
}
}

View File

@ -1,5 +1,5 @@
import { NotFoundError } from "backend/src/error/not-found-error";
import { Metadata } from "./types/metadata";
import { NotFoundError } from "./error/not-found-error";
type FetchItemsFunction<T> = (fetchItems: FetchItems) => Promise<T[]>;