2025SELab2-project-Dwengo/frontend/src/exception/not-found-exception.ts
2025-04-01 15:00:47 +02:00

5 lines
114 B
TypeScript

export class NotFoundException extends Error {
constructor(message: string) {
super(message);
}
}