Notes/src/errors/not_found_error.ts
2024-12-22 15:45:54 +02:00

10 lines
150 B
TypeScript

class NotFoundError {
message: string;
constructor(message: string) {
this.message = message;
}
}
export default NotFoundError;