add player tracked since date
All checks were successful
Deploy Backend / deploy (push) Successful in 3m6s
All checks were successful
Deploy Backend / deploy (push) Successful in 3m6s
This commit is contained in:
10
projects/backend/src/error/internal-server-error.ts
Normal file
10
projects/backend/src/error/internal-server-error.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { HttpCode } from "../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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user