inference-widgets / packages /inference /src /lib /InferenceOutputError.ts
machineuser
Sync widgets demo
94753b6
raw
history blame
No virus
279 Bytes
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";
}
}