fix error
This commit is contained in:
10
projects/common/src/error/internal-server-error.ts
Normal file
10
projects/common/src/error/internal-server-error.ts
Normal 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);
|
||||
}
|
||||
}
|
10
projects/common/src/error/not-found-error.ts
Normal file
10
projects/common/src/error/not-found-error.ts
Normal 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);
|
||||
}
|
||||
}
|
10
projects/common/src/error/rate-limit-error.ts
Normal file
10
projects/common/src/error/rate-limit-error.ts
Normal 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);
|
||||
}
|
||||
}
|
@ -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[]>;
|
||||
|
||||
|
Reference in New Issue
Block a user