@chelseaapps/recommender documentation

File

src/exceptions/invalid-rating.exception.ts

Extends

Error

Constructor

export class InvalidRatingException extends Error {
	constructor() {
		super('Rating must be between -1.0 and 1.0');
	}
}

Was this helpful?