add player tracked since date
All checks were successful
Deploy Backend / deploy (push) Successful in 3m6s

This commit is contained in:
Lee
2024-10-09 15:25:21 +01:00
parent 6b8244fa48
commit ee042fe91e
3 changed files with 22 additions and 1 deletions

View 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);
}
}