eduverse-backend / src /modules /attendance /exceptions /session-not-found.exception.ts
amirhamdi's picture
added the attendance and quiz modules apis all works
45198ea
Raw
History Blame Contribute Delete
224 Bytes
import { NotFoundException } from '@nestjs/common';
export class SessionNotFoundException extends NotFoundException {
constructor(sessionId: number) {
super(`Attendance session with ID ${sessionId} not found`);
}
}