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