MCPcopy Create free account
hub / github.com/tensorflow/tfjs / constructor

Method constructor

tfjs-layers/src/errors.ts:47–51  ·  view source on GitHub ↗
(message?: string)

Source from the content-addressed store, hash-verified

45 */
46export class ValueError extends Error {
47 constructor(message?: string) {
48 super(message);
49 // Set the prototype explicitly.
50 Object.setPrototypeOf(this, ValueError.prototype);
51 }
52}
53
54/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected