File size: 279 Bytes
94753b6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export class InferenceOutputError extends TypeError {
	constructor(message: string) {
		super(
			`Invalid inference output: ${message}. Use the 'request' method with the same parameters to do a custom call with no type checking.`
		);
		this.name = "InferenceOutputError";
	}
}