Files
Notes/src/errors/not_found_error.ts
2024-07-18 21:50:12 +03:00

9 lines
149 B
TypeScript

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