ff-admin-server/src/exceptions/databaseActionException.ts

9 lines
354 B
TypeScript
Raw Normal View History

2025-01-29 09:42:22 +01:00
import CustomRequestException from "./customRequestException";
export default class DatabaseActionException extends CustomRequestException {
constructor(action: string, table: string, err: any) {
let errstring = `${action} on ${table} with ${err?.code ?? "XX"} at ${err?.sqlMessage ?? err?.message ?? "XX"}`;
2025-01-29 09:42:22 +01:00
super(500, errstring, err);
}
}