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

9 lines
338 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 ?? "XX"}`;
super(500, errstring, err);
}
}