Notes/src/errors/not_found_error.ts

9 lines
143 B
TypeScript
Raw Normal View History

class NotFoundError {
2024-02-16 22:50:49 +02:00
message: string;
constructor(message: string) {
this.message = message;
}
}
export = NotFoundError;