exportclassWasmPanicRegistry {
private message = ''get() {
return`${this.message}`
}
// Don't use this method directly, it's only used by the Wasm panic hook in @prisma/prisma-schema-wasm.privateset_message(value: string) {
this.message = `RuntimeError: ${value}`
}
}